-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (32 loc) · 1.31 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (32 loc) · 1.31 KB
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
# -*- coding: utf-8 -*-
#
# This file is part of python-statsd-client released under the Apache
# License, Version 2.0. See the NOTICE for more information.
from distutils.core import setup
from statsd import __version__
def fread(filename):
with open(filename) as f:
return f.read()
def main():
setup(name='statsd-client',
description='StatsD client for Python',
long_description=fread('README.txt'),
version=__version__,
license='Apache 2.0',
author='Gaelen Hadlett',
author_email='gaelenh@gmail.com',
url='https://github.com/gaelenh/python-statsd-client',
py_modules=['statsd'],
keywords=['statsd', 'graphite', 'stats'],
classifiers=['License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: System :: Logging',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Intended Audience :: Developers'],
)
if __name__ == '__main__':
main()