-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
41 lines (37 loc) · 1.13 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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='web-poet',
version='0.1.1',
description="Zyte's Page Object pattern for web scraping",
long_description=long_description,
long_description_content_type='text/x-rst',
author='Scrapinghub',
author_email='[email protected]',
url='https://github.com/scrapinghub/web-poet',
packages=find_packages(
exclude=(
'tests',
)
),
install_requires=[
'attrs >= 21.3.0',
'parsel',
'url-matcher',
'multidict',
'w3lib >= 1.22.0',
],
classifiers=[
'Development Status :: 2 - Pre-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',
],
)