forked from ojii/leftronicd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (50 loc) · 1.36 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from leftronicd import __version__
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'PyYAML==3.10',
'Twisted==12.0.0',
'certifi==0.0.8',
'chardet==1.0.1',
'leftronic==1.4',
'pyOpenSSL==0.13',
'requests==0.11.1',
'wsgiref==0.1.2',
'zope.interface==3.8.0',
'MySQL-python==1.2.3',
'SQLAlchemy==0.7.7',
'pyodbc==3.0.3',
]
try:
import json
except ImportError:
INSTALL_REQUIRES.append('simplejson')
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
]
setup(
name='leftronicd',
version=__version__,
description='A twisted based daemon to send metrics to leftronic.com',
author='Jonas Obrist',
author_email='[email protected]',
url='https://github.com/ojii/leftronicd',
packages=find_packages(),
license='BSD',
platforms=['OS Independent'],
include_package_data=True,
install_requires=INSTALL_REQUIRES,
entry_points="""
[console_scripts]
leftronicd = leftronicd.main:cli
""",
)