-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
61 lines (58 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
import versioneer
from setuptools import find_packages, setup
from pathlib import Path
# Get the long description from the README file
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name="hylfm-net",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="HyLFM-Net",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kreshuklab/hylfm-net",
author="Fynn Beuttenmueller",
author_email="[email protected]",
classifiers=[ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=["tests"]), # Required
install_requires=[
"dill",
"h5py",
"imagecodecs",
"inferno",
"jupyter",
"matplotlib",
"numpy",
"pandas",
"pip",
"plotly",
"python",
"pytorch",
"pytorch-msssim",
"pyyaml",
"scikit-image",
"scikit-learn",
"scipy",
"six",
"tensorboard",
"tensorflow-gpu",
"tifffile",
"torchvision",
"tqdm",
"typer",
"typing_extensions",
"wandb",
"z5py",
"csbdeep @ git+ssh://[email protected]/csbdeep/csbdeep", ##egg=csbdeep",
],
entry_points={"console_scripts": ["hylfm=hylfm.__main__:main"]},
# extras_require={"test": ["pytest"]},
project_urls={ # Optional
"Bug Reports": "https://github.com/kreshuklab/hylfm-net/issues",
"Source": "https://github.com/kreshuklab/hylfm-net/",
},
)