|
3 | 3 | with open("README.md", "r") as fh: |
4 | 4 | long_description = fh.read() |
5 | 5 |
|
6 | | -setup( |
7 | | - name='benchbot_api', |
8 | | - version='0.1.3', |
9 | | - author='Ben Talbot', |
10 | | - author_email='b.talbot@qut.edu.au', |
11 | | - description= |
12 | | - 'The BenchBot API for use with the ACRV Scene Understanding Challenge', |
13 | | - long_description=long_description, |
14 | | - long_description_content_type='text/markdown', |
15 | | - packages=find_packages(), |
16 | | - install_requires=[ |
17 | | - 'jsonpickle', 'matplotlib', 'numpy', 'opencv-python', 'requests', |
18 | | - 'scipy>=1.2.0' |
19 | | - ], |
20 | | - classifiers=( |
21 | | - "Programming Language :: Python :: 2", |
22 | | - "Programming Language :: Python :: 2.7", |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "Programming Language :: Python :: 3.3", |
25 | | - "Programming Language :: Python :: 3.4", |
26 | | - "Programming Language :: Python :: 3.5", |
27 | | - "Programming Language :: Python :: 3.6", |
28 | | - "License :: OSI Approved :: BSD License", |
29 | | - "Operating System :: OS Independent", |
30 | | - )) |
| 6 | +setup(name='benchbot_api', |
| 7 | + version='0.1.3', |
| 8 | + author='Ben Talbot', |
| 9 | + author_email='b.talbot@qut.edu.au', |
| 10 | + description= |
| 11 | + 'The BenchBot API for use with the ACRV Scene Understanding Challenge', |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type='text/markdown', |
| 14 | + packages=find_packages(), |
| 15 | + install_requires=[ |
| 16 | + 'jsonpickle', 'matplotlib', 'numpy', 'opencv-python', 'requests', |
| 17 | + 'scipy>=1.2.0' |
| 18 | + ], |
| 19 | + classifiers=( |
| 20 | + "Programming Language :: Python :: 2", |
| 21 | + "Programming Language :: Python :: 2.7", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.3", |
| 24 | + "Programming Language :: Python :: 3.4", |
| 25 | + "Programming Language :: Python :: 3.5", |
| 26 | + "Programming Language :: Python :: 3.6", |
| 27 | + "License :: OSI Approved :: BSD License", |
| 28 | + "Operating System :: OS Independent", |
| 29 | + )) |
0 commit comments