-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 819 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 819 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
from setuptools import setup
from loghacks import __version__
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
setup(
name = "loghacks",
version = __version__,
description = "python logging utility for django projects",
long_description = """custom logging package for django.""",
license = "GNU GPL v3",
author = "Otu Ekanem",
author_email = "io2@woome.com",
url = "http://github.com/woome/loghacks",
download_url = "http://github.com/woome/loghacks/tarball/master",
platforms = ["any"],
packages = ['loghacks'],
classifiers = classifiers,
)