-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (36 loc) · 1.24 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
from setuptools import setup
import huey_django_orm
author = "avryhof"
name = huey_django_orm.name
version = huey_django_orm.__version__
readme = open("README.md").read()
setup(
name=name,
version=version,
packages=[name],
include_package_data=True,
url="https://github.com/{}/{}".format(author, name),
project_urls={
"GitHub Repo": "https://github.com/{}/{}".format(author, name),
"Bug Tracker": "https://github.com/{}/{}/issues".format(author, name),
},
license="MIT",
author="Amos Vryhof",
author_email="[email protected]",
description="A module to use Django ORM for storage with huey.",
long_description=readme,
long_description_content_type="text/markdown",
keywords="huey,django,huey.contrib.djhuey",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=["Django", "huey"],
)