-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
67 lines (62 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import find_packages, setup
with open("README.rst", "r") as _file:
readme = _file.read()
install_requires = [
"six>=1.9",
]
extras_require = []
tests_require = [
"factory_boy",
"fake-factory",
"pytest",
"pytest-django",
"pytest-cov",
"tox",
]
setup(
name="django-mongoengine-filter",
version="0.4.2",
description=(
"django-mongoengine-filter is a reusable Django application inspired "
"from django-filter for allowing mongoengine users to filter querysets "
"dynamically."
),
long_description=readme,
keywords="mongoengine, django-filter",
author="Artur Barseghyhan",
author_email="[email protected]",
url="https://github.com/barseghyanartur/django-mongoengine-filter",
project_urls={
"Bug Tracker": "https://github.com/barseghyanartur/"
"django-mongoengine-filter/issues",
"Documentation": "https://django-mongoengine-filter.readthedocs.io/",
"Source Code": "https://github.com/barseghyanartur/"
"django-mongoengine-filter",
"Changelog": "https://django-mongoengine-filter.readthedocs.io/"
"en/latest/changelog.html",
},
packages=find_packages(exclude=["tests"]),
package_data={"django_mongoengine_filter": ["locale/*/LC_MESSAGES/*"]},
license="GPL-2.0-only OR LGPL-2.1-or-later",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"License :: OSI Approved :: GNU Lesser General Public License v2 or "
"later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
],
python_requires=">=3.7",
install_requires=(install_requires + extras_require),
tests_require=tests_require,
include_package_data=True,
zip_safe=False,
)