-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.01 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.01 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
try:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
except ImportError :
from distutils import setup
setup(name="librato-scripts",
version="0.1",
url="https://github.com/igable/librato-python-scripts",
description="Simple utilities for sending data to Librato Metrics",
author="Ian Gable",
author_email="igable@uvic.ca",
scripts=['librato-imap'],
install_requires=[
"librato>=0.2"],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)