From c5b6b7ab20805498f33a738d4e7ddeb69c2c8fbe Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Sat, 27 Nov 2021 11:56:15 +0100 Subject: [PATCH] initial commit --- .gitignore | 8 ++++++++ LICENSE | 21 +++++++++++++++++++++ README.md | 3 +++ pyproject.toml | 6 ++++++ requirements.txt | 1 + setup.cfg | 27 +++++++++++++++++++++++++++ 6 files changed, 66 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 pyproject.toml create mode 100644 requirements.txt create mode 100644 setup.cfg diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..50cdbf2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Virtual environment +/.venv/ +# PyCharm: +/.idea/ +# Distribution / packaging: +*.egg-info/ +# Python cache: +__pycache__/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f34db29 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Daniil Fajnberg + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..93dde5a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Miscellaneous web utilities + +... diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b5a3c46 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ee4ba4f --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +aiohttp diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..1cd9199 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,27 @@ +[metadata] +name = webutils-df +version = 0.0.1 +author = Daniil F. +author_email = mail@placeholder123.to +description = Miscellaneous web utilities +long_description = file: README.md +long_description_content_type = text/markdown +url = https://git.fajnberg.de/daniil/webutils-df +project_urls = + Bug Tracker = https://github.com/daniil-berg/webutils-df/issues +classifiers = + Programming Language :: Python :: 3 + License :: OSI Approved :: MIT License + Operating System :: OS Independent +keywords = webscraping, html, markup, requests, async + +[options] +package_dir = + = src +packages = find: +python_requires = >=3.8 +install_requires = + aiohttp + +[options.packages.find] +where = src