-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 847 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# for our cluster we need
# torch>=1.3.0 for scitas compatibility
# on others we can use a more recent version
requirements = """
torch>=1.3.0
attrs>=19.1.0
torchvision>=0.4.1
sacred>=0.8.0
scikit-image
scipy
seaborn
h5py>=2.9.0
matplotlib
Pillow>=6.2.1
ray>=0.8.0
tqdm
hdf5storage>=0.1.15
numpy
pytorch-lightning<0.9
termcolor
lpips
unet
""".split(
"\n"
)
test_requirements = "pytest>=5.3.2"
setup(
name="rozklad",
version="0.0.1",
packages=find_packages(
".",
exclude=[],
),
url="",
license="OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
author="Igor Krawczuk",
author_email="[email protected]",
description="",
install_requires=requirements,
tests_require=test_requirements,
)