-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.08 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.08 KB
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
from setuptools import setup
setup(
name='pygelf',
version='0.4.3',
packages=['pygelf'],
description='Logging handlers with GELF support',
keywords='logging udp tcp ssl tls graylog2 graylog gelf',
author='Ivan Mukhin',
author_email='muhin.ivan@gmail.com',
url='https://github.com/keeprocking/pygelf',
long_description=open('README.rst').read(),
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Logging',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)