-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (57 loc) · 2.01 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
from setuptools import setup, find_packages
import io
from collections import OrderedDict
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
def get_version():
return '0.1.1'
setup(
name='Flask-Wired',
version=get_version(),
license='MIT',
author='Karthikkannan Maruthamuthu',
author_email='[email protected]',
maintainer='Karthikkannan Maruthamuthu',
maintainer_email='[email protected]',
description='Package for Flask wiring.',
long_description=readme,
url='https://github.com/treebohotels/Flask-Wired',
project_urls=OrderedDict((
('Documentation', 'https://github.com/treebohotels/Flask-Wired'),
('Code', 'https://github.com/treebohotels/Flask-Wired'),
('Issue tracker', 'https://github.com/treebohotels/Flask-Wired/issues'),
)),
package_dir={'': '.'},
packages=find_packages(".", exclude=['tests', 'sample_app']),
include_package_data=True,
zip_safe=False,
platforms='any',
python_requires='>=3.6',
install_requires=[
'Flask==1.0.2',
'Flask-Script==2.0.6',
'Flask-Migrate==2.2.1',
'flask-marshmallow==0.9.0',
'Flask-SQLAlchemy==2.3.2',
'marshmallow-sqlalchemy==0.14.1',
'psycopg2==2.7.5',
],
entry_points={
},
test_suite="tests",
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)