-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.29 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.29 KB
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
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
import subprocess
class CustomBuildPy(build_py):
def run(self):
subprocess.run('./rcst/compile_proto.sh', check=True)
build_py.run(self)
setup(
name='rcst',
version='0.1.0',
author='Shotak Aoki',
author_email='macakasit@gmail.com',
packages=find_packages(),
license='LICENSE',
description='Simple Python library for RoboCup SSL',
long_description=open('README.md').read(),
install_requires=[
"protobuf <= 3.20",
"typing_extensions >= 4.9.0",
],
extras_require={
'dev': [
'flake8 >= 3.7.9',
'pytest >= 5.4.1',
'coverage >= 6.2',
]
},
python_requires='>=3.6',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
cmdclass={
'build_py': CustomBuildPy
},
entry_points={
'pytest11': [
'rcst = rcst.rcst_plugin',
],
},
)