-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 897 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
27
28
from distutils.core import setup
setup(
name='django-pgfields',
version='0.0.2',
author="Mike O'Malley",
author_email='[email protected]',
description='Postgres-specific db fields for django',
long_description=open('README.rst').read(),
license='LICENSE',
url='http://github.com/spuriousdata/django-pgfields',
packages=['pgfields', 'pgfields.hstore', 'pgfields.management'],
include_package_data=True,
install_requires=[
'Django >= 1.4.0',
'psycopg2',
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Environment :: Web Environment",
#"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)