-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 945 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from loghogd import __version__ as VERSION
setup(
name = 'loghogd',
version = VERSION,
description = 'Modern log storage server',
author = 'Active Frequency',
author_email = '[email protected]',
url = 'https://github.com/activefrequency/loghogd',
license = 'Apache2',
test_suite = 'tests.tests_all',
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
scripts = ['bin/loghogd', 'bin/loghog-server-cert', 'bin/loghog-client-cert'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache2 License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
)