-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
41 lines (37 loc) · 1.24 KB
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open("README.md") as readme:
long_description = readme.read()
setuptools.setup(
name="i3deepice",
version="0.1",
author="Theo Glauch",
author_email="theo.glauch@tum.de",
description="DeepIceLearning Icetray Module",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/tglauch/i3deepice/",
project_urls={
"Source": "https://github.com/tglauch/i3deepice/",
"Tracker": "https://github.com/tglauch/i3deepice/issues/"
},
license="GPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering"
],
python_requires=">=2.7",
install_requires=[
'tensorflow>=1.5,<2.0',
'numpy>1.14',
'scipy>1.2.0'],
packages = setuptools.find_packages(),
package_data={"i3deepice": ["models/*/*.npy",
"models/*/*.cfg",
"lib/*.npy"]},
)