-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 826 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
#!/usr/bin/env python
import setuptools
def readme():
with open('README.rst') as f:
return f.read()
setuptools.setup(
name = 'vlne',
version = '0.3.0-alpha',
author = 'Dmitrii Torbunov',
author_email = '[email protected]',
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
],
description = 'Package to develop neutrino energy estimators',
install_requires = [
'numpy',
'pandas',
'scipy',
'tensorflow',
],
license = 'MIT',
long_description = readme(),
packages = setuptools.find_packages(
exclude = [ 'tests', 'tests.*' ]
),
url = 'https://github.com/usert5432/vlne',
)