Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/setuptools #71

Merged
merged 3 commits into from Nov 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 14 additions & 18 deletions setup.py
@@ -1,24 +1,20 @@
import sys
if sys.version_info < (2, 7):
print(sys.stderr, "{}: need Python 2.7 or later.".format(sys.argv[0]))
print(sys.stderr, "Your Python is {}".format(sys.version))
sys.exit(1)

from setuptools import setup, find_packages


setup(
name = "python-json-logger",
version = "0.1.9",
url = "http://github.com/madzak/python-json-logger",
license = "BSD",
description = "A python library adding a json log formatter",
author = "Zakaria Zajac",
author_email = "zak@madzak.com",
package_dir = {'': 'src'},
packages = find_packages("src", exclude="tests"),
test_suite = "tests.tests",
install_requires = ['setuptools'],
classifiers = [
name="python-json-logger",
version="0.1.9",
url="http://github.com/madzak/python-json-logger",
license="BSD",
description="A python library adding a json log formatter",
author="Zakaria Zajac",
author_email="zak@madzak.com",
package_dir={'': 'src'},
packages=find_packages("src", exclude="tests"),
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires='>=2.7',
test_suite="tests.tests",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand Down