-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
72 lines (65 loc) · 2.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="onto",
# Beta release
version="0.0.8a18",
author="Bill Rao",
author_email="[email protected]",
description="Build reactive back end with ease ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/billyrrr/onto",
keywords=["firebase", "firestore", "ORM", "flasgger", "flask",
"backend", "nosql", "reactive", "framework"],
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'Flask>=0.10',
# TODO: add version constraint
'marshmallow',
"inflection",
"dictdiffer",
"iso8601",
"pyyaml",
"ProxyTypes",
"pymonad",
'pytz',
],
extras_require={
'pony': ['pony'],
'firestore': [
'google-auth',
'google-api-python-client',
'firebase-admin>=3.0.0',
'google-cloud-firestore',
'google-cloud-datastore',
'grpcio==1.30.0',
],
'gcloud': ["gitpython", "google-cloud-logging",],
'flink': ['apache-flink'],
'statefun': ['apache-flink-statefun==3.2.0'],
'kafka': ["aiokafka"],
'couchdb': ['couchdb'],
'couchbase': ['couchbase'],
'leancloud': ['leancloud'],
'celery': ['celery'],
'jsonrpc': ['jsonrpcclient[requests]', 'Flask-JSONRPC'],
'graphql': ['websockets', 'starlette-graphql-zifulu'],
'flasgger': ["apispec>=2.0.2",
"flasgger"],
'flask': ['flask-socketio'],
'rest_api': ['starlette']
}
# entry_points = {
# 'console_scripts': ['`onto`=scripts.deploy:deploy_all'],
# }
)