-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.py
executable file
·87 lines (72 loc) · 2.64 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""setup.py for graypy"""
import codecs
import re
import sys
import os
from setuptools import setup, find_packages
from setuptools.command.test import test
def find_version(*file_paths):
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *file_paths), 'r') as fp:
version_file = fp.read()
m = re.search(r"^__version__ = \((\d+), ?(\d+), ?(\d+)\)", version_file, re.M)
if m:
return "{}.{}.{}".format(*m.groups())
raise RuntimeError("Unable to find a valid version")
VERSION = find_version("graypy", "__init__.py")
class Pylint(test):
def run_tests(self):
from pylint.lint import Run
Run(["graypy", "--persistent", "y", "--rcfile", ".pylintrc",
"--output-format", "colorized"])
class PyTest(test):
user_options = [('pytest-args=', 'a', "Arguments to pass to pytest")]
def initialize_options(self):
test.initialize_options(self)
self.pytest_args = "-v --cov={}".format("graypy")
def run_tests(self):
import shlex
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(shlex.split(self.pytest_args))
sys.exit(errno)
setup(
name='graypy',
version=VERSION,
description="Python logging handler that sends messages in Graylog Extended Log Format (GLEF).",
long_description=open('README.rst').read(),
keywords='logging gelf graylog2 graylog udp amqp',
author='Sever Banesiu',
author_email='banesiu.sever@gmail.com',
url='https://github.com/severb/graypy',
license='BSD License',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require=[
"pytest",
"pytest-cov",
"pylint>=1.9.1,<2.0.0",
"mock>=2.0.0,<3.0.0",
"requests>=2.20.1,<3.0.0",
"amqplib>=1.0.2,<2.0.0"
],
extras_require={'amqp': ['amqplib==1.0.2']},
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Logging',
],
cmdclass={"test": PyTest, "lint": Pylint},
)