-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.21 KB
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
47
48
49
[project]
name = "opendis"
version = "1.1.0a4"
description='implementation of DIS, IEEE-1278.1'
authors = [
{name="Don McGregor", email="mcgredo@nps.edu"},
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
repository = 'https://github.com/open-dis/open-dis-python'
documentation = "https://open-dis.org/"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator"
]
dependencies = [
"numpy (>=1.26.4,<3.0)",
]
[tool.poetry.group.dev.dependencies]
black = ">=24.0.0"
isort = ">=5.13.2"
commitizen = ">=3.13.0"
flake8 = ">=7.0.0"
flake8-bugbear = "^24.8.0"
flake8-print = "^5.0.0"
flake8-docstrings = "^1.7.0"
flake8-docstrings-complete = "^1.3.0"
docformatter = {extras = ["tomli"], version = "^1.7.5"}
pytest = "^8"
pytest-cov = "^4"
[tool.commitizen]
version = "1.1.0a4"
update_changelog_on_bump = false
changelog_merge_prerelease = false
bump_message = "bump: $current_version → $new_version"
version_files = [
"pyproject.toml:^version",
".env:^version"
]
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"