-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
23 lines (22 loc) · 971 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
from setuptools import find_packages, setup
setup(
name ='graphite-newts',
version = '0.1',
packages = find_packages(),
description = 'A graphite storage finder for Newts.',
author = 'Filippo Giunchedi',
author_email = '[email protected]',
install_requires = ['graphite-api', 'requests', 'click', 'parsedatetime'],
include_package_data = True,
setup_requires = ['nose>=1.0'],
tests_require = ['requests-mock', 'coverage'],
entry_points = {'console_scripts':
['graphite-newts=graphite_newts.cli:main']
},
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)