forked from wpbonelli/pytcherplants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.16 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
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='pytcherplants',
version='0.0.1',
description='pitcher geometry & color analysis for top-down groups of Sarracenia ',
long_description=long_description,
long_description_content_type="text/markdown",
author='Wes Bonelli',
author_email='[email protected]',
license='BSD-3-Clause',
url='https://github.com/w-bonelli/pytcherplants',
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'pypl = pytcherplants.cli:cli'
]
},
python_requires='>=3.6.8',
install_requires=['requests', 'httpx', 'click', 'tenacity', 'tqdm', 'pytest', 'pytest-dotenv', 'pytest-asyncio', 'psutil', 'numpy', 'numba', 'pandas', 'networkx', 'skan', 'tabulate', 'imutils', 'python-magic', 'seaborn', 'openpyxl', 'opencv-python', 'matplotlib', 'scikit-learn', 'scikit-image', 'scikit-build', 'scipy', 'Pillow', 'jupyter', 'nbconvert', 'plotly', 'kaleido'],
setup_requires=['wheel'],
tests_require=['pytest', 'coveralls', 'dotenv', 'pytest-asyncio'])