-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (37 loc) · 1.25 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
from setuptools import setup, find_packages
import os
import json
VERSION = "0.0.0.7"
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.MD"), "r") as fh:
long_description = fh.read()
setup(
name="anyoneai",
version=VERSION,
license='GNU',
author="Arjun S",
author_email="[email protected]",
description="AnyoneAI aims to democratize AI education by providing an intuitive and interactive platform to gain a solid understanding of AI and learn how to solve problems with it. ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ArjunInventor/anyoneai",
packages=find_packages(),
install_requires=[
'flask',
'gevent'
],
include_package_data = True,
entry_points ={
'console_scripts': [
'anyoneai = anyoneai.labs:main'
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research"
],
python_requires='>=3.5',
)