This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
51 lines (49 loc) · 1.46 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
from setuptools import setup
setup(
name='Flask-Philo',
version='3.7.0',
description='Simple web framework based on Flask',
long_description='Flask based framework to build RESTful microservices',
packages=[
'flask_philo', 'flask_philo.commands_flask_philo', 'flask_philo.db',
'flask_philo.db.postgresql', 'flask_philo.db.redis',
'flask_philo.db.elasticsearch', 'flask_philo.cloud',
'flask_philo.cloud.aws', 'flask_philo.templates', 'flask_philo.jinja2'
],
package_data={
'flask_philo.templates': ['*']
},
url='https://github.com/Riffstation/flask-philo',
author='Manuel Ignacio Franco Galeano',
author_email='[email protected]',
license='Apache',
install_requires=[
'psycopg2',
'jsonschema',
'pytest',
'Flask',
'flask_oauthlib',
'bcrypt',
'SQLAlchemy',
'redis==2.10.6',
'elasticsearch',
'boto3',
'PrettyTable',
'jinja2==2.10',
'flask-cors'
],
python_requires='>=3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Framework :: Flask',
'Programming Language :: Python :: 3',
],
keywords='web framework flask microservice',
entry_points={
"console_scripts": [
"flask-philo-admin = flask_philo.admin:main",
]
}
)