This repository was archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.35 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
from setuptools import setup, find_packages
LONG_DESCRIPTION = open("README.md").read()
INSTALL_REQUIRES = ["google-cloud-firestore", "firebase_admin"]
TESTS_REQUIRE = INSTALL_REQUIRES + [
"mock-firestore",
"pytest>=3.6",
"django",
"coverage",
"pytest-cov",
]
setup(
name="django-firebase-cache",
url="http://github.com/christippett/django-firebase-cache/",
author="Chris Tippett",
author_email="[email protected]",
version="19.6.2",
license="MIT",
package_dir={"": "src"},
packages=find_packages("src"),
description="Firebase cache for Django",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
setup_requires=["pytest-runner"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
],
)