-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 807 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='instrument',
version="0.6.1",
description='instrumentation primitives for metrics and benchmarking',
author='Pete Fein',
author_email='[email protected]',
url='http://github.com/wearpants/instrument',
packages=find_packages(exclude=['tests', 'doc']),
extras_require={
'statsd': ['statsd'],
'table': ['numpy', 'prettytable'],
'plot': ['numpy', 'matplotlib'],
},
license = "BSD",
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",],
long_description=open('README.rst').read(),
)