-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (27 loc) · 815 Bytes
/
setup.py
File metadata and controls
35 lines (27 loc) · 815 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
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read()
def readlines(f):
return open(os.path.join(os.path.dirname(__file__), f)).readlines()
setup(
name="python-udp-handler",
version="0.1",
include_package_data=True,
author="Rawand Hawiz",
author_email="rhawiz@geophy.com",
description="UDP Handler for logging to logstash.",
license="BSD",
keywords="python udp handler logging",
url="https://github.com/rhawiz/python-udp-handler",
packages=['logmodule'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
],
test_suite='tests'
)