forked from bernardopires/django-tenant-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (40 loc) · 1.42 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
from os.path import exists
from setuptools import setup
setup(
name="django-tenant-schemas",
author="Bernardo Pires Carneiro",
author_email="carneiro.be@gmail.com",
packages=[
"tenant_schemas",
"tenant_schemas.migration_executors",
"tenant_schemas.postgresql_backend",
"tenant_schemas.management",
"tenant_schemas.management.commands",
"tenant_schemas.templatetags",
"tenant_schemas.test",
"tenant_schemas.tests",
],
scripts=[],
url="https://github.com/bcarneiro/django-tenant-schemas",
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",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
],
install_requires=["Django>=1.11", "ordered-set", "psycopg2-binary", "six"],
setup_requires=["setuptools-scm"],
use_scm_version=True,
zip_safe=False,
)