This repository was archived by the owner on Jul 2, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
74 lines (66 loc) · 2.14 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import io
import os
from setuptools import setup, find_namespace_packages
deploy_requires = [
"bump2version==1.0.1",
"readme_renderer[md]",
"twine==3.4.1",
]
BASE_DIR = os.path.dirname(__file__)
README_PATH = os.path.join(BASE_DIR, "README.md")
LONG_DESCRIPTION_TYPE = "text/markdown"
if os.path.isfile(README_PATH):
with io.open(README_PATH, encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
else:
LONG_DESCRIPTION = ""
VERSION = (0, 2, 8)
version = ".".join(map(str, VERSION))
setup(
name="django-migration-resolver-hook",
version=version,
install_requires=["django>=1.11"],
python_requires=">=3.6",
description="Resolve migration conflicts.",
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_TYPE,
author="Tonye Jack",
author_email="[email protected]",
maintainer="Tonye Jack",
maintainer_email="[email protected]",
url="https://github.com/jackton1/django-migration-resolver-hook.git",
license="MIT",
keywords=[
"django",
"django migration",
"django migration resolver",
"django migration node conflict resolver",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Internet :: WWW/HTTP",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
],
packages=find_namespace_packages(),
entry_points={
"console_scripts": [
"migration_resolver = bin.resolver:main",
"auto_migration_resolver = bin.auto_resolver:main",
]
},
extras_require={
"deploy": deploy_requires,
"development": ["pip-tools==6.1.0"],
},
)