-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
40 lines (37 loc) · 1.39 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="itemadapter",
version="0.10.0",
license="BSD",
description="Common interface for data container classes",
long_description=long_description,
long_description_content_type="text/markdown",
author="Eugenio Lacuesta",
author_email="[email protected]",
url="https://github.com/scrapy/itemadapter",
packages=["itemadapter"],
package_data={
"itemadapter": ["py.typed"],
},
include_package_data=True,
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"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",
"Framework :: Scrapy",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)