forked from citusdata/django-multitenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 983 Bytes
/
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
from setuptools import setup, find_packages
from os import path
from io import open
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name="django-multitenant",
version='2.3.2', # Required
description='Django Library to Implement Multi-tenant databases',
url="https://github.com/citusdata/django-multitenant",
author='Louise Grandjonc',
author_email='[email protected]',
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers"
],
keywords=("citus django multi tenant"
"django postgres multi-tenant"),
packages=find_packages(exclude=['tests']), # Required
)