-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
43 lines (35 loc) · 1.21 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
import os
import setuptools
from threepio.version import get_version
with open("README.md") as f:
readme = f.read()
long_description = """
threepio %s
Minimally improved noise for python. Pragmatic, minimal improved logging for python.
To install use pip install git+git://github.com/jmatt/threepio
----
%s
----
For more information, please see: https://github.com/jmatt/threepio
""" % (get_version('short'), readme)
setuptools.setup(
name='threepio',
version=get_version('short'),
author='jmatt',
author_email='[email protected]',
description="Minimally improved noise for python. Pragmatic, minimal"
"improved logging for python.",
long_description=long_description,
license="Apache License, Version 2.0",
url="https://github.com/jmatt/threepio",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Logging"
])