This repository has been archived by the owner on May 9, 2024. It is now read-only.
forked from django-tenants/django-tenants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from os.path import exists
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = "1.1.5"
setup(
name='django-tenants',
version=__version__,
author='Thomas Turner',
author_email='[email protected]',
packages=[
'django_tenants',
'django_tenants.postgresql_backend',
'django_tenants.management',
'django_tenants.management.commands',
'django_tenants.migration_executors',
'django_tenants.templatetags',
'django_tenants.test',
'django_tenants.tests',
],
scripts=[],
url='https://github.com/tomturner/django-tenants',
license='MIT',
description='Tenant support for Django using PostgreSQL schemas.',
long_description=open('README.rst').read() if exists("README.rst") else "",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'Django >= 1.8.0',
'psycopg2',
],
zip_safe=False,
)