forked from jazzband/django-simple-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.42 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
from setuptools import setup
import simple_history
tests_require = ["Django>=1.4", "webtest==2.0.6", "django-webtest==1.7"]
try:
from unittest import skipUnless
except ImportError: # Python 2.6 compatibility
tests_require.append("unittest2")
setup(
name='django-simple-history',
version=simple_history.__version__,
description='Store model history and view/revert changes from admin site.',
long_description='\n'.join((
open('README.rst').read(),
open('CHANGES.rst').read(),
)),
author='Corey Bertram',
author_email='[email protected]',
maintainer='Trey Hunner',
url='https://github.com/treyhunner/django-simple-history',
packages=["simple_history", "simple_history.management", "simple_history.management.commands"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
"License :: OSI Approved :: BSD License",
],
tests_require=tests_require,
include_package_data=True,
test_suite='runtests.main',
)