-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (33 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='socceranalyzer',
version='2.0.1',
description='Robocup Soccer data analysis package for SIM2D, SSL and VSS categories',
long_description= open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/robocin/SoccerAnalyzer',
author='RoboCIn',
author_email="[email protected]",
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Jupyter',
'Framework :: Matplotlib',
'Framework :: Robot Framework :: Library',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.10',
],
keywords="data science analysis robotics jupyter matplotlib pandas",
project_urls={
'Documentation': 'TBA',
'Source': 'https://github.com/robocin/SoccerAnalyzer',
'Tracker': 'https://github.com/robocin/SoccerAnalyzer/issues'
},
include_package_data=True,
packages=[package for package in find_packages() if package.startswith("socceranalyzer")],
install_requires=['pandas', 'numpy', 'seaborn', 'matplotlib']
)