-
-
Notifications
You must be signed in to change notification settings - Fork 352
/
setup.py
35 lines (32 loc) · 1.16 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_desc = f.read()
setup(
name="django-smart-selects",
use_scm_version={"version_scheme": "post-release"},
setup_requires=["setuptools_scm"],
description="Django application to handle chained model fields.",
long_description=long_desc,
long_description_content_type="text/markdown",
author="Patrick Lauber",
author_email="[email protected]",
url="https://github.com/jazzband/django-smart-selects",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=["django>=3.2"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
],
)