-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (35 loc) · 1.17 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
44
45
46
47
from setuptools import setup
import codecs
import os
import flask_trace
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the relevant file
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name="flask_trace",
version=flask_trace.__version__,
description="Log trace decorator function for Flask",
long_description=long_description,
# The project URL.
url='https://github.com/canassa/flask-trace',
# Author details
author='Cesar Canassa',
author_email='[email protected]',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
# Who the project is intended for.
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: User Interfaces',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
# Supported Python versions.
'Programming Language :: Python :: 2.7',
],
keywords='flask log trace logging',
packages=['flask_trace'],
)