-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (24 loc) · 909 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
25
26
from setuptools import setup, find_packages
LONG_DESCRIPTION_FILES = ["README.md", "AUTHORS.rst", "CHANGELOG.rst"]
setup(
name="wagtail_client",
version="0.0.1",
description="Girl Effect Core Integration Demo",
long_description="".join(open(filename, "r").read() for filename in LONG_DESCRIPTION_FILES),
author="Praekelt Consulting",
author_email="[email protected]",
license="BSD",
url="http://github.com/girleffect/core-integration-demo",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
zip_safe=False,
)