-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (22 loc) · 1.23 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
from glob import glob
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
for scheme in INSTALL_SCHEMES.values():
scheme["data"] = scheme["purelib"]
setup(name="django-reversion",
version="1.2.1",
description="An extension to the Django web framework that provides comprehensive version control facilities",
author="David Hall",
author_email="[email protected]",
url="http://code.google.com/p/django-reversion/",
download_url="http://django-reversion.googlecode.com/files/django-reversion-1.2.1.tar.gz",
packages=["reversion", "reversion.templatetags", "reversion.management"],
package_dir={"reversion": "reversion"},
data_files=[["reversion/templates/reversion", glob("reversion/templates/reversion/*.html") + glob("reversion/locale/*/LC_MESSAGES/django.*")]],
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",])