-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathsetup.py
29 lines (28 loc) · 817 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
import setuptools
setuptools.setup(
name="mine", # Replace with your own username
version="0.0.1",
author="",
author_email="",
description="An implementation of the MINE algorithm in Pytorch",
long_description="",
long_description_content_type="",
url="https://github.com/gtegner/mine-pytorch",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires = [
'pytorch_lightning==0.6.0',
'matplotlib==3.1.2',
'numpy==1.17.4',
'tqdm==4.40.2',
'torch==1.3.1',
'torchvision==0.4.2',
'scikit_learn==0.22.1',
'pillow<7'
]
)