forked from muatik/flask-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (61 loc) · 1.62 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
"""
Flask-Profiler
-------------
Flask Profiler
Links
`````
* `development version <https://github.com/muatik/flask-profiler/>`
"""
import sys
from setuptools import setup
tests_require = [
"Flask-Testing",
"simplejson",
"sqlalchemy"
]
install_requires = [
'Flask',
'Flask-HTTPAuth',
'simplejson'
]
setup(
name='flask_profiler',
version='1.8',
url='https://github.com/muatik/flask-profiler',
license=open('LICENSE').read(),
author='Mustafa Atik',
author_email='[email protected]',
description='API endpoint profiler for Flask framework',
keywords=[
'profiler', 'flask', 'performance', 'optimization'
],
long_description=open('README.md').read(),
packages=['flask_profiler'],
package_data={
'flask_profiler': [
'storage/*',
'static/dist/fonts/*',
'static/dist/css/*',
'static/dist/js/*',
'static/dist/images/*',
'static/dist/js/*'
'static/dist/*',
'static/dist/index.html',
]
},
test_suite="tests.suite",
zip_safe=False,
platforms='any',
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)