-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.02 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pynaptan"
description = "Python package for naptan"
version = "0.2.0"
license = "MIT"
authors = ["Ciaran McCormick <ciaranmccormick@gmail.com>"]
readme = "README.md"
repository = "https://github.com/ciaranmccormick/pynaptan"
keywords = ["NaPTAN", "bus stops", "stops", "open data"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.23.0"
pydantic = "^1.9.1"
defusedxml = "^0.7.1"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
flake8 = "^4.0.0"
flake8-pytest-style = "^1.6.0"
ipdb = "^0.13.9"
ipython = "^8.4.0"
mypy = "^0.971"
pip-audit = "^2.4.14"
pretend = "^1.0.9"
pytest = "^7.1"
pytest-cov = "^3.0"
pytest-randomly = "^3.12"
pytest-socket = "^0.5.1"
snapshottest = "^0.6.0"
wemake-python-styleguide = "^0.17.0"