forked from mattiagiupponi/django-dynamic-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 999 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
31
32
33
import os
from setuptools import setup
README = os.path.join(os.path.dirname(__file__), "README.md")
with open(README, "r") as f:
LONG_DESCRIPTION = f.read()
setup(
name="django-dynamic-model",
version="0.4.0",
url="http://github.com/rvinzent/django-dynamic-models",
author="Ryan Vinzent",
author_email="[email protected]",
description="Allow dynamic creation and updates to database schema at runtime.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="MIT",
packages=["dynamic_models", "dynamic_models.migrations"],
install_requires=[
"Django>=2.1",
],
tests_require=[
"tox",
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Framework :: Django",
],
)