forked from gabrielburnworth/plant-detection
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (34 loc) · 1.39 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
#!/usr/bin/env python
"""Plant Detection package setup."""
from setuptools import setup
with open('README.md') as f:
README = f.read()
with open('requirements.txt') as f:
REQUIRED = f.read().splitlines()
DESCRIPTION = 'Detect and mark plants in a soil area image using Python OpenCV'
if __name__ == '__main__':
setup(name='plant_detection',
version='0.0.1',
description=DESCRIPTION,
long_description=README,
url='https://github.com/FarmBot-Labs/plant-detection',
author='FarmBot Inc.',
license='MIT',
author_email='[email protected]',
packages=['plant_detection'],
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Image Recognition',
],
keywords=['farmbot', 'python', 'opencv'],
# install_requires=REQUIRED,
test_suite='plant_detection.tests.tests.test_suite',
scripts=['quickscripts/capture_and_detect.py'],
zip_safe=False)