2020-09-16 15:41:02 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "fittrackee"
|
2021-11-03 12:41:23 +01:00
|
|
|
version = "0.5.0"
|
2020-09-19 13:56:14 +02:00
|
|
|
description = "Self-hosted outdoor workout/activity tracker"
|
2020-09-16 18:58:11 +02:00
|
|
|
authors = ["SamR1"]
|
2020-09-16 15:41:02 +02:00
|
|
|
license = "GPL-3.0"
|
2020-09-16 18:58:11 +02:00
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/SamR1/FitTrackee"
|
|
|
|
documentation = "https://samr1.github.io/FitTrackee"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Flask",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-12-25 19:14:37 +01:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2020-09-16 18:58:11 +02:00
|
|
|
"Programming Language :: JavaScript"
|
|
|
|
]
|
|
|
|
exclude = ["fittrackee/tests"]
|
2020-09-16 15:41:02 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.7"
|
2021-11-06 18:37:31 +01:00
|
|
|
dramatiq = {version = "^1.12.0", extras = ["redis"]}
|
2021-05-22 17:11:32 +02:00
|
|
|
flask = "^2.0"
|
2020-09-16 15:41:02 +02:00
|
|
|
flask-bcrypt = "^0.7.1"
|
2020-12-25 19:14:37 +01:00
|
|
|
flask-dramatiq = "^0.6.0"
|
2021-10-16 21:15:54 +02:00
|
|
|
flask-migrate = "^3.1"
|
2020-09-16 15:41:02 +02:00
|
|
|
gpxpy = "=1.3.4"
|
2021-04-06 13:15:26 +02:00
|
|
|
gunicorn = "^20.1"
|
2021-10-16 21:15:54 +02:00
|
|
|
humanize = "^3.12"
|
2021-07-03 11:17:38 +02:00
|
|
|
psycopg2-binary = "^2.9"
|
2021-10-16 21:15:54 +02:00
|
|
|
pyjwt = "^2.3"
|
2020-09-16 15:41:02 +02:00
|
|
|
python-forecastio = "^1.4"
|
2021-10-16 21:15:54 +02:00
|
|
|
pytz = "^2021.3"
|
2020-12-30 22:07:43 +01:00
|
|
|
shortuuid = "^1.0.1"
|
2020-12-25 19:14:37 +01:00
|
|
|
staticmap = "^0.5.4"
|
2021-10-16 21:15:54 +02:00
|
|
|
tqdm = "^4.62"
|
2021-11-06 18:37:31 +01:00
|
|
|
SQLAlchemy = "1.4.26"
|
2020-09-16 15:41:02 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-11-06 18:37:31 +01:00
|
|
|
black = "^21.10b0"
|
2021-01-20 15:40:26 +01:00
|
|
|
freezegun = "^1.1"
|
2021-07-03 11:17:38 +02:00
|
|
|
mypy = "^0.910"
|
2020-12-25 19:14:37 +01:00
|
|
|
pyopenssl = "^20.0"
|
|
|
|
pytest = "^6.2"
|
|
|
|
pytest-black = "^0.3.12"
|
2021-10-16 21:15:54 +02:00
|
|
|
pytest-cov = "^3.0"
|
2020-09-16 15:41:02 +02:00
|
|
|
pytest-flake8 = "^1.0"
|
2021-05-22 17:11:32 +02:00
|
|
|
pytest-isort = "^2.0"
|
|
|
|
pytest-runner = "^5.3"
|
2020-12-25 19:14:37 +01:00
|
|
|
pytest-selenium = "^2.0.1"
|
|
|
|
recommonmark = "^0.7"
|
2021-10-16 21:15:54 +02:00
|
|
|
sphinx-bootstrap-theme = "^0.8.0"
|
2020-12-25 19:14:37 +01:00
|
|
|
sphinxcontrib-httpdomain = "^1.7"
|
2021-10-16 21:15:54 +02:00
|
|
|
types-pytz = "^2021.3.0"
|
2021-07-03 11:17:38 +02:00
|
|
|
types-requests = "^2.25.0"
|
2021-10-16 21:15:54 +02:00
|
|
|
types-freezegun = "^1.1"
|
2021-11-06 21:26:02 +01:00
|
|
|
Sphinx = "^4.2"
|
2020-09-16 15:41:02 +02:00
|
|
|
|
2020-09-16 18:58:11 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
fittrackee = 'fittrackee.__main__:main'
|
|
|
|
fittrackee_init_data = 'fittrackee.__main__:init_data'
|
|
|
|
fittrackee_upgrade_db = 'fittrackee.__main__:upgrade_db'
|
|
|
|
fittrackee_worker = 'fittrackee.__main__:dramatiq_worker'
|
2020-09-16 15:41:02 +02:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 79
|
|
|
|
skip-string-normalization = true
|
|
|
|
target-version = ["py37", "py38"]
|
|
|
|
include = ".py$"
|
|
|
|
exclude = "migrations"
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|
|
|
|
force_grid_wrap = 0
|
|
|
|
combine_as_imports = true
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|