forked from mbabineau/babelchart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (25 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·29 lines (25 loc) · 1 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
import babelchart
setup(name = 'babelchart',
version = babelchart.__version__,
description = 'Pluggable timeseries data converter',
author = 'Mike Babineau',
author_email = 'michael.babineau@gmail.com',
# install_requires = [],
url = 'https://github.com/mbabineau/babelchart',
packages = ['babelchart', 'babelchart.sinks', 'babelchart.sources', 'babelchart.dependencies'],
license = 'Apache v2.0',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: System :: Logging',
]
)