-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (54 loc) · 1.87 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="django-migrations-formatter",
author="Markus Holtermann",
author_email="[email protected]",
description="A Django library to automatically format your migrations.",
license="BSD",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MarkusH/django-migrations-formatter",
project_urls={
"CI": "https://github.com/MarkusH/django-migrations-formatter/actions", # noqa
"Changelog": "https://github.com/MarkusH/django-migrations-formatter/blob/main/CHANGELOG.md", # noqa
"Issues": "https://github.com/MarkusH/django-migrations-formatter/issues", # noqa
},
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
include_package_data=True,
extras_require={
"black": [
"black>=22.1.0",
],
"dev": ["pre-commit"],
"isort": [
"isort",
],
"test": [
"coverage[toml]>=6,<7",
"Django",
],
},
setup_requires=["setuptools_scm>=6,<7"],
use_scm_version=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.8",
)