-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
48 lines (43 loc) · 1.58 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
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.1'
install_requires = [
'protobuf',
'werkzeug',
]
if sys.version_info < (2, 7):
install_requires += ['unittest2']
setup(name='iscool_e.pynba',
version=version,
description='This is a wsgi middleware to monitor performance in production systems',
long_description=README + '\n\n' + NEWS,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: Log Analysis",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Page Counters",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
"Topic :: Utilities"
],
keywords='pinba wsgi monitoring',
author='Xavier Barbosa',
author_email='[email protected]',
url='https://github.com/IsCoolEntertainment/pynba',
license='MIT',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages = ['iscool_e'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=['nose-exclude'],
)