-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 949 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 949 Bytes
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
from setuptools import setup, find_packages
import os
version = '0.0.4.dev0'
setup(
name='statsd-cloudwatch',
version=version,
url="http://github.com/Jc2k/statsd-cloudwatch",
description="A statsd server that publishes to cloudwatch",
long_description = open("README.rst").read(),
author="Isotoma Limited",
author_email="support@isotoma.com",
license="Apache Software License",
classifiers = [
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'boto',
],
entry_points='''
[console_scripts]
statsd_cloudwatch = statsd_cloudwatch.main:main
''',
)