forked from ecometrica/django-dbarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 985 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 985 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
28
29
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-dbarray",
version = "0.0.1",
packages = find_packages(),
description = "Django ORM field for Postgres array types.",
author = "Ecometrica",
author_email = "info@ecometrica.ca",
maintainer = "Michael Mulley",
maintainer_email = "michael@michaelmulley.com",
url = "http://github.com/ecometrica/django-vinaigrette/",
keywords = ["django", "model", "field",
"postgres", "postgresql", "database", "array", "list"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Topic :: Database",
"Framework :: Django",
],
long_description = read('README.rst'),
)