-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 857 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 857 Bytes
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
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='scrapy-post2wp',
version='1.0.0',
description='',
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/maximiliancw/scrapy-post2wp', # Optional
author='Maximilian Wolf',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
keywords='scrapy, wordpress, content-aggregation',
packages=['scrapy_post2wp'],
python_requires='>=3.8, <4',
install_requires=['requests', 'scrapy']
)