[build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry] name = "fietsboek" description = "GPX file sharing website" version = "0.4.0" license = "AGPL-3.0-or-later" readme = "README.md" authors = [ "Daniel Schadt ", ] classifiers = [ 'Development Status :: 3 - Alpha', 'Framework :: Pyramid', 'Operating System :: POSIX :: Linux', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', ] documentation = "https://kingdread.de/fietsboek/" repository = "https://gitlab.com/dunj3/fietsboek" keywords = ["web", "gpx"] [tool.poetry.dependencies] python = "^3.7.2" pyramid = "^2" pyramid_jinja2 = "^2.10" pyramid_debugtoolbar = "^4.9" pyramid_retry = "^2.1" pyramid_tm = "^2.5" waitress = "^2.1" SQLAlchemy = "^1.4" alembic = "^1.8" transaction = "^3" "zope.sqlalchemy" = "^1.6" redis = "^4.3.4" # Compatibility with old Python versions importlib_resources = "^5.10" importlib_metadata = "^5.0.0" Babel = "^2.11" cryptography = "^38" gpxpy = "^1.5" markdown = "^3.4" bleach = "^5" Click = "^8.1" requests = "^2.28.1" pydantic = "^1.10.2" termcolor = "^2.1.1" [tool.poetry.group.docs] optional = true [tool.poetry.group.docs.dependencies] Sphinx = "^5.3" [tool.poetry.group.testing] optional = true [tool.poetry.group.testing.dependencies] pytest = "^7.2.0" webtest = "^3.0.0" pytest-cov = "^4.0.0" pytest-playwright = "^0.3.0" [tool.poetry.group.linters] optional = true [tool.poetry.group.linters.dependencies] pylint = "^2.15.8" black = "^22.12.0" [tool.poetry.group.types] optional = true [tool.poetry.group.types.dependencies] mypy = "^0.991" types-markdown = "^3.4.2.1" types-requests = "^2.28.11.5" types-bleach = "^5.0.3.1" types-babel = "^2.11.0.7" types-redis = "^4.3.21.6" [tool.poetry.scripts] fietsctl = "fietsboek.scripts.fietsctl:main" fietsupdate = "fietsboek.updater.cli:cli" [tool.poetry.plugins."paste.app_factory"] main = "fietsboek:main" [tool.black] line-length = 100 extend-exclude = '''upd_.+\.py|^/fietsboek/alembic/versions/.+'''