-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (39 loc) · 1.12 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
from setuptools import setup, find_packages
import os
path = os.path.dirname(os.path.abspath(__file__))
with open(path+"/README.md", "r") as fh:
long_description = fh.read()
fh.close()
setup(
name='transparentai',
version='0.2.2',
description="Python tool to create or inspect a transparent and ethical AI.",
license='MIT',
author='Nathan LAUGA',
author_email='nathan.lauga@protonmail.com',
url='https://github.com/Nathanlauga/transparentai',
packages=[pkg for pkg in find_packages(
) if pkg.startswith('transparentai')],
include_package_data=True,
install_requires=[
'pandas',
'numpy',
'matplotlib',
'scikit-learn',
'shap',
'energyusage',
'safety',
'seaborn',
'ipywidgets'
],
long_description_content_type="text/markdown",
long_description=long_description,
python_requires='>=3.6',
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
entry_points={
},
)