-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 813 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 813 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
29
from setuptools import setup, find_packages
version = __import__('logflow').__version__
setup(
name='logflow',
version=version,
author='Riccardo Poggi',
author_email='rik.poggi@gmail.com',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
url='https://github.com/rikpg/logflow',
license='BSD licence',
description='Logging framework for Python.',
long_description=open('README.md').read(),
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: System :: Logging',
),
setup_requires=['nose'],
tests_require=(
'mock',
),
)