-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 936 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 936 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
from distutils.core import setup
setup(
name = "django-weave",
packages = ["weave"],
version = "0.0",
description = "Weave tools for Django",
author = "The Providence Plan",
author_email = "plandry@provplan.org",
url = "https://github.com/ProvidencePlan/weave/tree/master/django",
download_url = "https://github.com/ProvidencePlan/weave/tarball/master",
keywords = ["weave", "visualization", "django"],
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
long_description = """\
Django tools for the Open Indicator Consortium's Weave visualization environment.
This app provides a simple Django model-based interface for the Weave visualization
system.
"""
)