forked from eiwa-dev/http_logging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 740 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 740 Bytes
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='http_logging',
version='0.2',
description='Better HTTP Log Handler',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
],
keywords='http logging syslog server',
url='https://bitbucket.org/eiwa_dev/nostradamus',
author='Juan I Carrano <jc@eiwa.ag>',
author_email='jc@eiwa.ag',
license='Proprietary',
packages=['http_logging'],
include_package_data=True,
zip_safe=True
)