Skip to content

Commit

Permalink
Add Pypi classifiers and specify Python version 3 in bin/komlogd
Browse files Browse the repository at this point in the history
  • Loading branch information
juan cañete committed Feb 14, 2017
1 parent f69f64b commit a2e5880
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
3 changes: 2 additions & 1 deletion bin/komlogd
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python3

'''
Komlog daemon
Expand Down
18 changes: 16 additions & 2 deletions setup.py
Expand Up @@ -2,7 +2,7 @@
import unittest
from setuptools import setup, find_packages

version = '0.1.0'
version = '0.1.1'
if not sys.version_info[0] == 3 and not sys.version_info[1] >= 5:
sys.exit("Sorry, Python 3.5 or greater required.")

Expand All @@ -20,12 +20,26 @@ def get_test_suite():
author='komlog Team',
author_email='hello@komlog.io',
url='https://github.com/komlog-io/komlogd',
license='LICENSE.txt',
license='Apache Software License',
install_requires=['pyyaml', 'setuptools', 'cryptography', 'aiohttp>=1.0', 'pandas'],
package_dir={ '': 'lib' },
packages = find_packages('lib'),
test_suite = 'setup.get_test_suite',
scripts=[
'bin/komlogd',
],
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',
]
)

0 comments on commit a2e5880

Please sign in to comment.