-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
40 lines (37 loc) · 1.2 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
#!/usr/bin/env python
import setuptools
from django_classified import get_version # noqa isort:skip
with open("README.md") 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.8",
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"django-bootstrap-form",
"django-filter",
"Django>=3.2,<4.1",
"Pillow>=6.0",
"sorl-thumbnail>=12.6",
"unidecode",
# Babel is used for currency formatting
'Babel>=1.0,<3.0',
]
)