-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (40 loc) · 1.47 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
import os
import sys
import unittest
from setuptools import setup, find_packages
exec(open('lib/komlogd/version.py').read())
if not sys.version_info[0] == 3 and not sys.version_info[1] >= 5:
sys.exit("Sorry, Python 3.5 or greater required.")
setup(
name='komlogd',
version=__version__,
description='Komlog agent',
long_description=open(os.path.join(os.path.dirname(__file__), 'docs/.pypi_readme.rst')).read(),
author='komlog Team',
author_email='[email protected]',
url='https://github.com/komlog-io/komlogd',
license='Apache Software License',
install_requires=['pyyaml', 'setuptools', 'cryptography>=2.0', 'aiohttp>=2.0', 'pandas>=0.18.1'],
package_dir={ '': 'lib' },
packages = find_packages('lib'),
test_suite = 'komlogd',
entry_points = {
'console_scripts': [
'komlogd = komlogd.main:main'
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
]
)