-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·37 lines (33 loc) · 1.17 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
from distutils.core import setup
from setuptools import find_packages
import os
import sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def find_packages_in(where, **kwargs):
return [where] + ['%s.%s' % (where, package) for package in find_packages(where=where, **kwargs)]
setup(
name = 'django-multitenant',
version = '0.2.10',
author = 'Allan Lei',
author_email = '[email protected]',
description = ('Multi-tenant addons for Django'),
license = 'New BSD',
keywords = 'multitenant multidb multischema django',
url = 'https://github.com/allanlei/django-multitenant',
packages=find_packages_in('tenant'),
long_description=read('README.md'),
install_requires=[
'Django>=1.4',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)