forked from usert5432/lstm_ee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 840 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
#!/usr/bin/env python
import setuptools
def readme():
with open('README.rst') as f:
return f.read()
setuptools.setup(
name = 'lstm_ee',
version = '0.1.0',
author = 'Dmitrii Torbunov',
author_email = '[email protected]',
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
],
description = 'Package to train NOvA LSTM Energy Estimators',
install_requires = [
'cafplot',
'keras',
'pandas',
'scipy',
'cython',
],
license = 'MIT',
long_description = readme(),
packages = setuptools.find_packages(
exclude = [ 'tests', 'tests.*' ]
),
url = 'https://github.com/usert5432/lstm_ee',
)