forked from flask-dashboard/Flask-MonitoringDashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (48 loc) · 1.99 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
import json
import os
import setuptools
loc = os.path.dirname(os.path.abspath(__file__))
def get_description():
with open(loc + '/docs/README.rst') as readme:
info = readme.read()
with open(loc + '/docs/changelog.rst') as changelog:
return info + '\n\n' + changelog.read()
with open(loc + '/requirements.txt') as f:
required = f.read().splitlines()
with open('flask_monitoringdashboard/constants.json', 'r') as f:
constants = json.load(f)
setuptools.setup(
name="Flask-MonitoringDashboard",
version=constants['version'],
packages=setuptools.find_packages(),
include_package_data=True,
platforms='Any',
zip_safe=False,
test_suite='flask_monitoringdashboard.test.get_test_suite',
url='https://github.com/flask-dashboard/Flask-MonitoringDashboard',
author=constants['author'],
author_email=constants['email'],
description="Automatically monitor the evolving performance of Flask/Python web services.",
long_description=get_description(),
install_requires=required,
entry_points={'flask.commands': ['fmd=flask_monitoringdashboard.cli:fmd']},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Flask',
],
project_urls={
'Bug Reports': 'https://github.com/flask-dashboard/Flask-MonitoringDashboard/issues',
'PyPi': 'https://pypi.org/project/Flask-MonitoringDashboard/',
'Documentation': 'http://flask-monitoringdashboard.readthedocs.io/',
'Source': 'https://github.com/flask-dashboard/Flask-MonitoringDashboard/',
},
)