-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
36 lines (34 loc) · 1.13 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cryoCARE",
version="0.3.0",
author="Tim-Oliver Buchholz, Thorsten Wagner",
author_email="[email protected], "
description="cryoCARE is a deep learning approach for cryo-TEM tomogram denoising.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/juglab/cryoCARE_pip",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License"
],
python_requires='>=3.8',
install_requires=[
"numpy~=1.19.2",
"mrcfile",
"csbdeep>=0.7.0,<0.8.0",
"psutil"
],
scripts=[
'cryocare/scripts/cryoCARE_extract_train_data.py',
'cryocare/scripts/cryoCARE_train.py',
'cryocare/scripts/cryoCARE_predict.py'
]
)