Skip to content

Commit

Permalink
chore: Fill in pyproject.toml, remove requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
tkarabela committed Nov 17, 2023
1 parent 51f14ad commit 35fb4a3
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
/.idea
/venv
/temp
/dist
.pytest_cache/
poetry.lock
29 changes: 28 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,45 @@ description = "Parser for bank statements in camt.053 XML format (Czech Banking
authors = ["Tomas Karabela <tkarabela@seznam.cz>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tkarabela/okane"
repository = "https://github.com/tkarabela/okane"
keywords = ["finance", "czech", "banking", "sepa", "expenses", "camt053"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: File Formats",
"Topic :: Office/Business :: Financial :: Accounting",
"Typing :: Typed",
]
packages = [
{ include = "okane.py" },
]
include = [
{ path = "tests", format = "sdist" },
]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tkarabela/okane/issues"

[tool.poetry.dependencies]
python = "^3.10"
lxml = "^4.9"
pydantic = "^1.10"


[tool.poetry.group.dev.dependencies]
mypy = "^1.1"
pytest = "^7.2"
lxml-stubs = "^0.4"

[tool.poetry.scripts]
okane = "okane:main"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
3 changes: 0 additions & 3 deletions requirements-dev.txt

This file was deleted.

2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

0 comments on commit 35fb4a3

Please sign in to comment.