-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.2 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
from setuptools import find_packages
from setuptools import setup
setup(
name='app',
version='0.0.3',
description='World API',
long_description='World API',
author='Visar Zejnullahu',
author_email='[email protected]',
url='https://github.com/visar/world',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask',
'flask-caching',
'flask-restful',
'flask-sqlalchemy',
'marshmallow',
'psycopg2-binary',
'redis',
'webargs',
],
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
],
project_urls={
'Changelog': 'https://github.com/visar/world/blob/master/CHANGELOG.rst',
'Issue Tracker': 'https://github.com/visar/world/issues',
},
python_requires='>=3.7',
license='MIT',
)