-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (40 loc) · 1.52 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
35
36
37
38
39
40
41
42
from setuptools import find_namespace_packages, setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='sr.comp',
version='1.9.0',
url='https://github.com/PeterJCLaw/srcomp/wiki',
project_urls={
'Documentation': 'https://srcomp.readthedocs.org/',
'Code': 'https://github.com/PeterJCLaw/srcomp',
'Issue tracker': 'https://github.com/PeterJCLaw/srcomp/issues',
},
packages=find_namespace_packages(include=['sr.*']),
package_data={'sr.comp': ['py.typed']},
namespace_packages=['sr', 'sr.comp'],
description="Reliable software for running robotics competitions",
long_description=long_description,
author="Student Robotics Competition Software SIG",
author_email='srobo-devel@googlegroups.com',
install_requires=[
'PyYAML >=5.1.2, <7',
'league-ranker >=0.1, <2',
'python-dateutil >=2.7, <3',
'typing-extensions >=4, <5',
],
python_requires='>=3.9',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries',
],
zip_safe=True,
)