forked from MrUPGrade/ulog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.08 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.08 KB
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
# coding=utf-8
from __future__ import absolute_import
from setuptools import setup
setup(
name='ulog',
version='0.3.3',
packages=['ulog'],
url='https://github.com/MrUPGrade/ulog',
license='MIT',
author='Jakub (Mr. UPGrade) Czapliński',
author_email='sirupgrade@gmail.com',
description='Simple decorator based logger',
install_requires=[
'six>=1.10.0',
'enum34',
'funcsigs>=0.4',
'future',
'wrapt>=1.10.6'
],
test_suite='tests',
extras_require={
'test': [
'coverage>=4.0.0',
'mock>=1.3',
'pytest',
'pytest-cov',
],
'dev': [
'ipython',
'wheel',
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
)