@@ -22,6 +22,11 @@ def run(self):
22
22
'USER' : 'postgres' ,
23
23
'ENGINE' : 'django.db.backends.postgresql_psycopg2'
24
24
},
25
+ 'alternative' : {
26
+ 'NAME' : 'test_alternative' ,
27
+ 'USER' : 'postgres' ,
28
+ 'ENGINE' : 'django.db.backends.postgresql_psycopg2'
29
+ },
25
30
'sqlite' : {
26
31
'NAME' : 'sqlite' ,
27
32
'ENGINE' : 'django.db.backends.sqlite3'
@@ -35,8 +40,8 @@ def run(self):
35
40
36
41
setup (
37
42
name = 'django-postgres-copy' ,
38
- version = '2.0.0 ' ,
39
- description = "Quickly move comma-delimited data in and out of a Django model using PostgreSQL's COPY command. " ,
43
+ version = '0.2.3 ' ,
44
+ description = "Quickly load comma-delimited data into a Django model using PostgreSQL's COPY command" ,
40
45
author = 'Ben Welsh' ,
41
46
author_email = 'ben.welsh@gmail.com' ,
42
47
url = 'http://django-postgres-copy.californiacivicdata.org/' ,
@@ -52,11 +57,9 @@ def run(self):
52
57
'Programming Language :: Python :: 3.6' ,
53
58
'Framework :: Django' ,
54
59
'Framework :: Django :: 1.8' ,
60
+ 'Framework :: Django :: 1.9' ,
55
61
'Framework :: Django :: 1.10' ,
56
62
'Framework :: Django :: 1.11' ,
57
63
'License :: OSI Approved :: MIT License' ,
58
- 'Intended Audience :: Developers' ,
59
- 'Topic :: Database' ,
60
- 'Topic :: Database :: Database Engines/Servers'
61
64
],
62
65
)
0 commit comments