-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from angelogladding/pypoetry
Use poetry for dependency management
- Loading branch information
Showing
6 changed files
with
43 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ mf2py.egg-info/ | |
nbproject/ | ||
venv/ | ||
*~ | ||
poetry.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[tool.poetry] | ||
name = "mf2py" | ||
version = "1.1.3" | ||
description = "Microformats parser" | ||
authors = ["Tom Morris <tom@tommorris.org>"] | ||
license = "MIT" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Text Processing :: Markup :: HTML" | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8" | ||
html5lib = "^1.1" | ||
requests = "^2.28.2" | ||
beautifulsoup4 = "^4.11.1" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
lxml = "^4.9.2" | ||
mock = "^5.0.1" | ||
pytest = "^7.2.1" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.