forked from django-tenants/django-tenants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.06 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
#!/usr/bin/env python
from os.path import exists
from version import get_git_version
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = "1.0.2"
setup(
name='django-tenants',
version='1.0.2',
author='Thomas Turner',
author_email='[email protected]',
packages=[
'django_tenants',
'django_tenants.postgresql_backend',
'django_tenants.management',
'django_tenants.management.commands',
'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=[
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Programming Language :: Python',
],
install_requires=[
'Django >= 1.8.0',
'psycopg2',
],
zip_safe=False,
)