-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 1.29 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
# Copyright IRT Antoine de Saint Exupéry et Université Paul Sabatier Toulouse III - All
# rights reserved. DEEL is a research program operated by IVADO, IRT Saint Exupéry,
# CRIAQ and ANITI - https://www.deel.ai/
# =====================================================================================
import setuptools
from setuptools import setup
with open("README.md", encoding="utf-8") as fh:
README = fh.read()
setup(
name="Influenciae",
version="0.3.0",
description="A Tensorflow Toolbox for Influence Functions",
long_description=README,
long_description_content_type="text/markdown",
author="DEEL Core Team",
author_email="agustin-martin.picard@irt-saintexupery.com",
license="MIT",
install_requires=['tensorflow >=2.7.0, <2.10.0', 'numpy', 'matplotlib'],
extras_require={
"tests": ["pytest", "pylint"],
"docs": ["mkdocs", "mkdocs-material", "numkdoc"],
},
packages=setuptools.find_namespace_packages(include=["deel.*"]),
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)