forked from albermax/innvestigate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (51 loc) · 1.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os
import setuptools
install_requirements = [
"future",
"h5py",
"keras==2.2.0",
"numpy",
"pillow",
"pytest",
"scipy",
]
setup_requirements = [
"pytest-runner",
]
test_requirements = [
"pytest"
]
def readme():
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, 'README.md')) as f:
return f.read()
def setup():
setuptools.setup(
name="innvestigate",
version="1.0.0rc1",
description=("A toolbox to innvestigate neural networks decisions."),
long_description=readme(),
classifiers=[
"License :: OSI Approved :: ",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
url="https://github.com/albermax/innvestigate",
author="Maxmilian Alber, Sebastian Lapuschkin, Miriam Haegele, Kristof Schuett, Philipp Seegerer, Pieter-Jan Kindermans",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(),
install_requires=install_requirements,
setup_requires=setup_requirements,
tests_require=test_requirements,
include_package_data=True,
zip_safe=False,
)
pass
if __name__ == "__main__":
setup()