-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 932 Bytes
/
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
import os
try:
from setuptools import setup, find_packages, Command
except ImportError:
from distutils.core import setup, Command
BASE_DIR = os.path.dirname(__file__)
README_PATH = os.path.join(BASE_DIR, 'README.md')
DESCRIPTION = open(README_PATH).read()
setup(
name='server-timing-profiler',
version='0.0.2',
description='HTTP Server-Timing for Python Flask',
long_description=DESCRIPTION,
license='Apache License 2.0',
author='Perminder Singh',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'Flask==0.10.1'
],
keywords='HTTP Server-Timing for Python Flask',
url='https://github.com/PammyS/server-timing-profiler',
namespace_packages=[],
platforms='Linux, POSIX',
entry_points={
'console_scripts': [
'',
]
},
classifiers=[
'Programming Language :: Python :: 2.7',
],
)