forked from deel-ai/xplique
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 972 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as fh:
README = fh.read()
setup(
name="Xplique",
version="0.4.3",
description="Explanations toolbox for Tensorflow 2",
long_description=README,
long_description_content_type="text/markdown",
author="Thomas FEL",
author_email="[email protected]",
license="MIT",
install_requires=['tensorflow>=2.1.0', 'numpy', 'scikit-learn', 'scikit-image',
'matplotlib', 'scipy', 'opencv-python'],
extras_require={
"tests": ["pytest", "pylint"],
"docs": ["mkdocs", "mkdocs-material", "numkdoc"],
},
packages=find_packages(),
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)