forked from jazzband/django-simple-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (46 loc) · 1.82 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
41
42
43
44
45
46
47
from setuptools import setup
with open("README.rst") as readme, open("CHANGES.rst") as changes:
setup(
name="django-simple-history",
use_scm_version={
"version_scheme": "post-release",
"local_scheme": "node-and-date",
"relative_to": __file__,
"root": ".",
"fallback_version": "0.0.0",
},
setup_requires=["setuptools_scm"],
description="Store model history and view/revert changes from admin site.",
long_description="\n".join((readme.read(), changes.read())),
long_description_content_type="text/x-rst",
author="Corey Bertram",
author_email="corey@qr7.com",
maintainer="Trey Hunner",
url="https://github.com/jazzband/django-simple-history",
packages=[
"simple_history",
"simple_history.management",
"simple_history.management.commands",
"simple_history.templatetags",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
],
python_requires=">=3.7",
include_package_data=True,
)