-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathsetup.py
42 lines (39 loc) · 1.3 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
#!/usr/bin/env python
import setuptools
from django_classified import get_version # noqa isort:skip
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
author="Sergey Lyapustin",
name="django-classified",
version=get_version().replace(" ", "-"),
author_email="[email protected]",
description="Django Classified",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/slyapustin/django-classified",
keywords="django classified",
packages=setuptools.find_packages(exclude=("demo",)),
python_requires=">=3.9",
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"django-bootstrap-form",
"django-filter",
"Django>=4.2,<5.2",
"Pillow",
"sorl-thumbnail",
"unidecode",
# Babel is used for currency formatting
"babel",
],
)