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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
#!/usr/bin/env 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 handlers that send messages in the Graylog Extended Log Format (GELF).",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
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>=2.8.7,<4.0.0",
"pytest-cov<=2.6.0,<3.0.0",
"pylint>=1.9.3,<2.0.0",
"mock>=2.0.0,<3.0.0",
"requests>=2.20.1,<3.0.0",
"amqp>=5.1.1",
],
extras_require={
"amqp": ["amqp==5.1.1"],
"docs": [
"sphinx>=2.1.2,<3.0.0",
"sphinx_rtd_theme>=0.4.3,<1.0.0",
"sphinx-autodoc-typehints>=1.6.0,<2.0.0",
],
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"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 :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Logging",
],
cmdclass={"test": PyTest, "lint": Pylint},
)
|