-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 763 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 763 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="django-shortcodes",
version="0.4.0",
description="WordPress shortcode support for Django",
author="Mark Steadman",
author_email="marksteadman@me.com",
maintainer="Martey Dodoo",
maintainer_email="django-shortcodes@marteydodoo.com",
url="https://github.com/martey/django-shortcodes",
license="MIT",
packages=[
"shortcodes",
"shortcodes.parsers",
"shortcodes.templatetags",
],
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
)