-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 893 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 893 Bytes
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
from setuptools import setup, find_packages
setup(
name='dynamic_databases',
version=__import__('dynamic_databases').__version__,
description=(
'Django App that allows for the addition of databases '
'on the fly and also the ability to query the database'
'\'s tables through dynamically generated models. '
),
author='David Higgins',
author_email='sligodave@gmail.com',
url='https://github.com/sligodave/dynamic_databases/',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=[
'django',
'jsonfield'
],
include_package_data=True,
zip_safe=False,
)