-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 781 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 781 Bytes
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
from setuptools import setup, find_packages
import generation
with open("README.md", 'r') as f:
long_description = f.read()
# TODO: (@whiteRa2bit, 2020-09-23) Add skimage
requirements = [
"torch==1.4.0",
"scipy==1.4.1",
"numpy==1.18.1",
"matplotlib==3.2.1",
"wandb==0.10.11",
"uproot==3.12.0",
"tqdm==4.48.2",
"h5py==2.10.0",
"loguru==0.5.3",
"pandas==1.1.0",
"plotly==4.10.0"
]
setup(
name='generation',
version=generation.__version__,
description='Module of generative models applied to high energy physics problems',
license="MIT",
long_description=long_description,
author='Pavel Fakanov',
author_email='pavel.fakanov@gmail.com',
packages=find_packages(),
install_requires=requirements,
)