-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
29 lines (27 loc) · 1 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
from distutils.core import setup
from setuptools import find_packages
setup(
name="django-elasticsearch-debug-toolbar",
packages=find_packages(),
version="3.0.2",
description="A Django Debug Toolbar panel for Elasticsearch",
long_description=open("README.md").read(),
author="Benoit Chabord",
author_email="[email protected]",
url="http://github.com/Benoss/django-elasticsearch-debug-toolbar",
license="MIT",
keywords=["django", "es", "elastic", "elasticsearch"],
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
tests_require=["pytest", "django-debug-toolbar", "elasticsearch"],
test_suite="pytest.collector",
)