-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·51 lines (48 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='smart-arabidopsis-traits',
version='0.5.4',
description='Extract geometric traits from top-view images of plants.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Suxing Liu',
author_email='[email protected]',
license='BSD-3-Clause',
url='https://github.com/Computational-Plant-Science/SMART',
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'smart = core.cli:cli'
]
},
python_requires='>=3.6.8',
install_requires=[
'click',
'psutil',
'numpy',
'numba==0.55.1',
'pandas==1.4.1',
'networkx',
'skan',
'tabulate',
'imutils',
'python-magic',
'seaborn',
'openpyxl',
'opencv-python',
'matplotlib',
'scikit-learn',
'scikit-image==0.19.3',
'scikit-build',
'scipy',
'Pillow==10.0.1',
'mayavi',
'progressbar',
'moviepy'
],
setup_requires=['wheel'],
tests_require=['pytest', 'coveralls'])