-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·39 lines (36 loc) · 1.39 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
from setuptools import setup, find_packages
readme_text = open("README.md", "r").read()
setup(
name="django-ormcache",
version="1.3.2",
description="ORM cache for Django",
license="MIT",
keywords="cache django",
author="Corey Farwell",
author_email="[email protected]",
maintainer="Educreations Engineering",
maintainer_email="[email protected]",
url="https://github.com/educreations/django-ormcache",
long_description=readme_text,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
package_dir={"ormcache": "ormcache"},
python_requires=">=3.7, <4",
install_requires=["Django>=2.0,<5.0", "six"],
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
],
extras_require={"test": ["tox", "pytest", "pytest-django", "flake8"]},
tests_require=["django-ormcache[test]"],
project_urls={
"Homepage": "https://github.com/educreations/django-ormcache",
"Issues": "https://github.com/educreations/django-ormcache/issues",
"Changelog": "https://github.com/educreations/django-ormcache/blob/master/CHANGES.md",
},
)