-
Notifications
You must be signed in to change notification settings - Fork 424
/
setup.py
executable file
·34 lines (32 loc) · 1.16 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
from os.path import exists
from setuptools import find_packages
from setuptools import setup
setup(
name="django-tenant-schemas",
author="Bernardo Pires Carneiro",
author_email="[email protected]",
packages=find_packages(),
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>=2.2", "ordered-set", "psycopg2-binary", "six"],
setup_requires=["setuptools-scm"],
use_scm_version=True,
zip_safe=False,
)