-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 853 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 853 Bytes
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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('readme.rst') as file:
long_description = file.read()
setup(name='colorlog',
description='Color for the python3 logging module',
long_description = long_description,
author='klieret',
author_email='klieret@users.noreply.github.com',
maintainer='klieret',
maintainer_email='klieret@users.noreply.github.com',
url='https://github.com/klieret/python-colorlog',
packages=['colorlog'],
install_requires=['typing'],
license='GNU Lesser General Public License v3.0',
classifiers = [
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
]
)