-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
43 lines (41 loc) · 1.51 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
41
42
43
from pathlib import Path
import setuptools
setuptools.setup(
name="itemadapter",
version="0.11.0",
license="BSD",
description="Common interface for data container classes",
long_description=Path("README.md").read_text(encoding="utf-8"),
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",
extras_require={
"attrs": ["attrs>=18.1.0"],
"pydantic": ["pydantic>=1.8"],
"scrapy": ["scrapy>=2.2"],
},
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",
],
)