forked from Aviah/django-queue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (32 loc) · 1.18 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
import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open("README.md") as f:
README = f.read()
setup(
name="django-leek",
version="1.0.6",
packages=find_packages(exclude=["test_app"]),
install_requires=["django>=3.2", "google-cloud-logging>=3.0.0"],
include_package_data=True,
license="MIT License",
description="A simple Django app to offload tasks from main web server",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Volumental/django-leek",
author="Volumental",
author_email="[email protected]",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
)