-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.16 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
43
44
45
46
[tool.poetry]
name = "farr"
version = "1.4.3"
description = "The gathering place of utilitarians and empiricists!"
license = "MIT"
authors = ["Artin Mohammadi <[email protected]>"]
readme = "README.md"
repository = "https://github.com/sheikhartin/farr"
keywords = ["programming-language", "from-scratch"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Topic :: Education",
"Topic :: Software Development :: Interpreters",
]
include = ["CHANGELOG.md", "Dockerfile", "examples", "libs", "tests"]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
mypy = "^1.8.0"
ruff = "^0.3.3"
[tool.pytest.ini_options]
addopts = "-vs --no-header --cov-report term-missing --cov=farr"
testpaths = ["tests"]
[tool.black]
line-length = 80
skip-string-normalization = true
target-version = ["py310"]
[tool.poetry.scripts]
farr = "farr.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"