-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.py
27 lines (25 loc) · 930 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
import os
from setuptools import setup
from pystatsd import VERSION
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pystatsd",
version=".".join(map(str, VERSION)),
author = "Steve Ivy",
author_email = "[email protected]",
description = ("pystatsd is a client for Etsy's statsd server, a front end/proxy for the Graphite stats collection and graphing server."),
url='https://github.com/sivy/py-statsd',
license = "BSD",
packages=['pystatsd'],
long_description=read('README.md'),
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
scripts=['bin/pystatsd-server']
)