forked from stephenmcd/grappelli-safe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
24 lines (22 loc) · 834 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
from setuptools import setup, find_packages
setup(
name="grappelli_safe",
version="0.5.2",
description="A snapshot of the grappelli_2 branch of django-grappelli, "
"packaged as a dependency for the Mezzanine CMS for Django.",
long_description=open("README.rst").read(),
license="BSD 3-clause",
author="Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)",
author_email="[email protected]",
maintainer="Stephen McDonald",
maintainer_email="[email protected]",
url="http://github.com/stephenmcd/grappelli-safe/",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.8",
],
)