-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.51 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
from setuptools import setup
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = '0.2.1'
DESCRIPTION = 'A neural network architecture for building fully explainable neural network for arithmetic and gradient logic expression approximation.'
# Setting up
setup(
name="bacon-net",
version=VERSION,
url="https://github.com/Haishi2016/bacon-net",
author="haishibai (Haishi Bai)",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
install_requires=[
"tensorflow>=2.6.2",
"keras>=2.6.0",
"numpy>=1.19.5",
"sympy"
],
keywords=['ai', 'explainable', 'gradient logic',
'approximation', 'formula', 'explainability', 'decision', 'decision making'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
extras_require={
"dev": [
"pytest>=3.7",
],
},
packages=["bacon", "bacon.nets"],
py_modules=["net", "stack", "nets"]
)