-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (22 loc) · 754 Bytes
/
setup.py
File metadata and controls
22 lines (22 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name="django-indicators",
packages=["indicators"],
version="0.0",
description="Indicators app shared between DataHub Portal and Core",
author="The Providence Plan",
author_email="plandry@provplan.org",
url="https://github.com/ProvidencePlan/Datahub-Indicators/",
download_url="https://github.com/ProvidencePlan/Datahub-Indicators//tarball/master",
keywords=[],
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
long_description="""\
"""
)