-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (30 loc) · 1.07 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 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-saas',
version = '0.1',
author = 'Allan Lei',
author_email = '[email protected]',
description = ('SaaS for Django'),
license = 'New BSD',
keywords = 'saas multidb multischema django',
url = 'https://github.com/allanlei/django-saas',
packages=find_packages_in('saas'),
long_description=read('README'),
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',
],
)