-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathsetup.py
43 lines (40 loc) · 1.31 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
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="tf-explain",
version="0.2.1",
description="Interpretability Callbacks for Tensorflow 2.0",
long_description=long_description,
long_description_content_type="text/markdown",
author="Raphaël Meudec",
author_email="[email protected]",
url="https://github.com/sicara/tf-explain",
license="MIT",
install_requires=["opencv-python>=4.1.0.25"],
extras_require={
"tests": [
"black>=19.3b0",
"pylint>=2.3.1",
"pytest>=5.0.1",
"pytest-timeout>=1.3.3",
"pytest-mock>=1.10.4",
"pytest-cov>=2.7.1",
"tox>=3.13.2",
],
"publish": ["bumpversion>=0.5.3", "twine>=1.13.0"],
"docs": ["sphinx>=2.1.2", "sphinx-rtd-theme>=0.4.3"],
},
packages=find_packages(),
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
)