-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
46 lines (42 loc) · 1.32 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
from setuptools import setup, find_packages
__version__ = "3.0.0"
setup(
# package name in pypi
name="django-oscar-elasticsearch",
# extract version from module.
version=__version__,
description="Search app for oscar using elasticsearch",
long_description="Search app for oscar using elasticsearch",
classifiers=[],
keywords="",
author="Lars van de Kerkhof",
author_email="specialunderwear@gmail.com",
url="https://github.com/specialunderwear/django-oscar-elasticsearch",
license="GPL",
# include all packages in the egg, except the test package.
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
namespace_packages=[],
# include non python files
include_package_data=True,
zip_safe=False,
# specify dependencies
install_requires=[
"django>=3.2",
"setuptools",
"django-oscar>=4.0a1",
"purl",
"elasticsearch>=8.0.0",
"uwsgidecorators-fallback",
"django-oscar-odin>=0.3.0",
],
# mark test target to require extras.
extras_require={
"test": [
"mock",
"coverage>=5.4",
"sorl-thumbnail>=12.10.0,<13.0.0",
"vdt.versionplugin.wheel",
],
"dev": ["pylint>=2.17.4", "pylint-django>=2.5.3", "black>=23.3.0"],
},
)