forked from vizsatiz/archaea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (22 loc) · 698 Bytes
/
setup.py
File metadata and controls
30 lines (22 loc) · 698 Bytes
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
import setuptools
__version__ = '0.0.1'
setuptools.setup(
name="archaea",
version=__version__,
url="https://github.com/archaea-solutions/archaea.git",
author="vishnu satis",
author_email="satis.vishnu@gmail.com",
description="AI as a Service",
long_description=open('README.rst').read(),
py_modules=['machine_learning', 'machine_learning_tests'],
zip_safe=False,
platforms='any',
install_requires=[],
classifiers=[
'Development Status :: Beta-1',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'
],
)