-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
29 lines (27 loc) · 1000 Bytes
/
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
import setuptools
with open("README.md", encoding="utf8") as readme, open(
"requirements.txt", encoding="utf8"
) as requirements:
long_description = readme.read()
requires = requirements.read().splitlines(keepends=False)
setuptools.setup(
name="python_arq",
packages=setuptools.find_packages(),
version="6.0.7",
license="MIT",
description="Asynchronous Python Wrapper For A.R.Q API.",
long_description=long_description,
long_description_content_type="text/markdown",
author="TheHamkerCat",
author_email="thehamkercat@gmail.com",
url="https://github.com/thehamkercat/Python_ARQ",
keywords=["API", "ARQ_API", "Python-ARQ", "ARQ", "A.R.Q"],
install_requires=requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)