-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (28 loc) · 855 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
31
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
install_requires = [
"keras==2.0.0",
"tensorflow==1.0.1"
]
setup(
name='aKountable',
version='2.0.0',
description='aKountable: Safe, accountable AI in the Blockchain',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: The people/Big companies",
"License :: OSI Approved :: Apache 2.0",
"Programming Language :: Python :: 2.7",
],
url='https://github.com/safer41/aKountable.git',
author='41',
keywords='AI, blockchain, safety, saferAI',
license="Apache 2.0",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=install_requires
)