forked from avalente/appmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (28 loc) · 988 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
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name = "AppMetrics",
version = "0.3",
packages = find_packages(),
scripts = [],
install_requires = [],
package_data = {
},
# metadata for upload to PyPI
author = "Antonio Valente",
author_email = "[email protected]",
description = "Application metrics collector",
license = "Apache 2.0",
keywords = ["metrics", "folsom", "histogram", "metric", "monitor"],
url = "https://github.com/avalente/appmetrics",
platforms = 'Platform Independent',
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Monitoring",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
]
)