forked from cloudbopper/anamod
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (48 loc) · 1.52 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
"""anamod package definition and install configuration"""
from setuptools import find_packages, setup
# pylint: disable = invalid-name
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("docs/changelog.rst") as changelog_file:
changelog = changelog_file.read()
setup(
author="Akshay Sood",
author_email="sood.iitd@gmail.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
description="Feature Importance Analysis of Models",
include_package_data=True,
install_requires=[
"anytree",
"cloudpickle",
"h5py",
"matplotlib",
"numpy>=1.19.0",
"scikit-learn",
"scipy",
"seaborn",
"sympy",
"synmod",
"xxhash"
],
keywords="anamod",
license="MIT",
long_description=readme + "\n\n" + changelog,
long_description_content_type="text/x-rst",
name="anamod",
packages=find_packages(),
python_requires=">= 3.6",
url="https://github.com/cloudbopper/anamod",
version="0.1.4",
zip_safe=True,
)