Skip to content

Commit 7e3a0de

Browse files
committed
Added setup.py
1 parent ec03f13 commit 7e3a0de

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

setup.py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
from setuptools import find_packages
2+
from setuptools import setup
3+
4+
5+
# Read repository information. This will be used as the package description.
6+
long_description = None
7+
with open("README.md", "r") as fh:
8+
long_description = fh.read()
9+
assert(long_description is not None)
10+
11+
12+
setup(
13+
name='friendlylog',
14+
version='1.0',
15+
description='Python logging for humans: colorful, clean interface, straightforward usage, simply friendly log.',
16+
author='sebisebi',
17+
author_email='gpirtoaca@gmail.com',
18+
url='https://github.com/SebiSebi/friendlylog',
19+
license='Apache 2.0',
20+
packages=find_packages(),
21+
long_description=long_description,
22+
long_description_content_type="text/markdown",
23+
install_requires=[
24+
'six',
25+
],
26+
extras_require={
27+
'colored': ['colored>=1.4.0'],
28+
'six': ['six>=1.12.0'],
29+
},
30+
classifiers=[
31+
"Programming Language :: Python :: 3",
32+
"Programming Language :: Python :: 2",
33+
"License :: OSI Approved :: Apache Software License",
34+
"Operating System :: OS Independent",
35+
"Topic :: Scientific/Engineering",
36+
"Topic :: Software Development :: Libraries :: Python Modules",
37+
"Development Status :: 5 - Production/Stable",
38+
"Topic :: System :: Logging",
39+
],
40+
)

0 commit comments

Comments
 (0)