forked from zytedata/zyte-common-items
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.37 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
44
from os.path import dirname, join
from setuptools import find_packages, setup
with open(join(dirname(__file__), "zyte_common_items/VERSION"), "rb") as f:
version = f.read().decode("ascii").strip()
setup(
name="zyte-common-items",
version=version,
description="Item definitions for Zyte API schema",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="Zyte Group Ltd",
author_email="info@zyte.com",
url="https://github.com/zytedata/zyte-common-items",
packages=find_packages(
exclude=[
"tests",
]
),
package_data={
"zyte_common_items": ["py.typed", "VERSION"],
},
install_requires=[
"attrs>=21.3.0",
"itemadapter>=0.2.0",
"web-poet>=0.7.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
],
python_requires=">=3.7",
)