first working draft

This commit is contained in:
2021-03-13 16:53:15 +01:00
parent f58ed9fee0
commit 65f8c7d4be
8 changed files with 487 additions and 1 deletions
+4 -1
View File
@@ -14,9 +14,12 @@ setuptools.setup(
# url="https://github.com/...",
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
package_data={'soupjobs': ['example.config.yaml']},
install_requires=[
'aiohttp',
'beautifulsoup4'
'beautifulsoup4',
'pydantic',
'pyyaml',
],
extras_require={
'tests': ['coverage'],