forked from simone/django-compositekey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.52 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
from distutils.core import setup
setup(
name = "django-compositekey",
version = "1.5.0",
url = 'https://github.com/simone/django-compositekey',
author = 'Simone Federici',
author_email = '[email protected]',
description = 'Use Django with embedded database that have composite multicolumn primary key and multiple foreignkeys',
data_files = ["AUTHORS"],
package_dir={'': 'src'},
packages = [
"compositekey",
"compositekey.db",
"compositekey.db.backends",
"compositekey.db.backends.oracle",
"compositekey.db.backends.postgresql_psycopg2",
"compositekey.db.models",
"compositekey.db.models.sql",
"compositekey.db.models.fields",
"compositekey.core",
"compositekey.core.management",
"compositekey.forms"
],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)