forked from yandexdataschool/mlhep2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (36 loc) · 1010 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
47
48
49
50
51
52
"""
Utility package for MLHEP-2019 summer school.
"""
from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mlhep2019',
version='0.0.0',
description="""Utility package for MLHEP-2019 summer school.""",
long_description=long_description,
url='https://github.com/yandexdataschool/mlhep2019/',
author='Andrey Ustyuzhanin',
author_email='andrey.u at gmail dot com',
maintainer='Andrey Ustyuzhanin',
maintainer_email='andrey.u at gmail dot com',
license='MIT',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='Machine Learning',
packages=find_packages('.'),
install_requires=[
'tqdm',
'matplotlib',
'numpy',
'scipy',
'torch',
'torchvision',
]
)