forked from 20minutes/galena
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 728 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 728 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='galena',
version='0.3',
description='Dumb but useful graphite/carbon client.',
author='Timothée Peignier',
author_email='tpeignier@20minutes.fr',
url='https://github.com/20minutes/galena',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
test_suite='galena.tests',
tests_require=['mock'],
classifiers=[
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)