-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
32 lines (30 loc) · 998 Bytes
/
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
from setuptools import setup
import versioneer
with open('README.md', 'r') as f:
desc = f.read()
setup(name="droppy",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Michael J. Orella",
author_email="[email protected]",
license='MIT',
packages=['droppy'],
python_requires='>3.6',
test_suite='tests',
install_requires=['numpy',
'scipy',
'scikit-image',
'imageio',
'matplotlib',
'imageio-ffmpeg',
'pyqt5',
'numba',
'joblib'],
description=desc.splitlines()[0],
long_description=desc,
long_description_content_type='text/markdown',
url='https://github.com/michaelorella/droppy',
entry_points={'console_scripts':
['droppy=droppy.droppy:main']
}
)