-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
33 lines (31 loc) · 1.16 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
import os
from setuptools import setup, find_packages
STATUS_PROD = 'Development Status :: 5 - Production/Stable'
STATUS_BETA = 'Development Status :: 4 - Beta'
STATUS_ALPHA = 'Development Status :: 3 - Alpha'
version = '0.1.22'
README = os.path.join(os.path.dirname(__file__), 'README.rst')
long_description = open(README).read()
setup(
name='django-simple-audit',
version=version,
description="Simple audit for model instances in Django.",
long_description=long_description,
classifiers=[
STATUS_PROD,
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
keywords='revisions versioning history audit',
author='Leandro Souza',
author_email='[email protected]',
url='https://github.com/leandrosouza/django-simple-audit',
license='BSD',
packages=find_packages('.', exclude=('testproject*',)),
include_package_data=True,
)