-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.1 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
# Ref:
# http://docs.python.org/distutils/setupscript.html#meta-data
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
# Backward compatibility with older Python
# patch distutils if it can't cope with the "classifiers" or
# "download_url" keywords
from setuptools import setup, find_packages
setup(
name='django-site-multitenancy',
version='0.1.0',
author='Chris Malek',
author_email='cmalek@placodermi.org',
packages=find_packages(),
url='https://github.com/cmalek/django-site-multitenancy',
license='LICENSE.txt',
description='Enable multitenancy for django projects',
long_description=open('README.md').read(),
install_requires=[
'django-crequest',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)