-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (41 loc) · 1.17 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(name='crystalml',
version='0.1.1',
description='Integrated tool to measure the nucleation rate of protein crystals. ',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/hlgirard/CrystalML',
author='Henri-Louis Girard',
author_email='[email protected]',
license='GPLv3',
packages=find_packages(exclude=["tests.*", "tests"]),
install_requires=[
'click',
'bleach>=2.1.0',
'docutils>=0.13.1',
'Pygments',
'tensorflow',
'matplotlib',
'numpy',
'opencv-python',
'pkginfo>=1.4.2',
'pandas',
'joblib',
'pillow>=6.2.0',
'plotly',
'scikit-image',
'setuptools',
'scipy',
'seaborn',
'tensorboard',
'tqdm',
],
entry_points={
'console_scripts': [
'crystalml = src.cli:cli',
],
},
zip_safe=False,
include_package_data=True)