-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (41 loc) · 1.29 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
import os
from setuptools import setup, find_packages
install_requires = [
'statsd >= 2.1.2, < 2.2',
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pyramid_metrics',
version='0.3.2.dev0',
author='Pior Bastida',
author_email='[email protected]',
description='Performance metrics for Pyramid using StatsD',
license='BSD',
keywords='wsgi pylons pyramid statsd metric tween handler',
url='https://github.com/ludia/pyramid_metrics',
long_description=read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Pyramid',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
packages=find_packages(),
package_data={
'devup': ['files/*'],
},
install_requires=install_requires,
entry_points={
'console_scripts': [
'de = devup.app:cli',
],
},
)