-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
33 lines (32 loc) · 1.19 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
from setuptools import find_packages, setup
setup(
name="queuelib",
version="1.7.0",
license="BSD",
description="Collection of persistent (disk-based) and non-persistent (memory-based) queues",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="Scrapy project",
author_email="[email protected]",
url="https://github.com/scrapy/queuelib",
packages=find_packages(),
package_data={
"queuelib": ["py.typed"],
},
platforms=["Any"],
python_requires=">=3.9",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)