-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 889 Bytes
/
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
from setuptools import setup
import loggings
setup(
name="kenny-loggings",
version=loggings.__version__,
description="A simple Django model event logger.",
long_description="A simple Django model event logger.",
keywords="python, django, logging",
author="Chris Jones <[email protected]>",
author_email="[email protected]",
url="https://github.com/brack3t/kenny-loggings",
license="BSD",
packages=["loggings", "loggings.tests", "loggings.migrations"],
zip_safe=False,
install_requires=[],
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Environment :: Web Environment",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
],
)