-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.34 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
47
48
49
50
51
52
53
[tool.poetry]
name = "bcsim"
version = "1.0.6"
description = "Rolling Ball Clock Simulator"
authors = ["Peter Nardi <[email protected]>"]
maintainers = ["Peter Nardi <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "bcsim", from = "src"}]
keywords = [
"bcsim",
"rolling",
"ball",
"clock",
"simulator"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Games/Entertainment :: Simulation",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
[tool.poetry.urls]
"Source Code" = "https://github.com/geozeke/bcsim"
"Bug Tracker" = "https://github.com/geozeke/bcsim/issues"
"Documentation" = "https://geozeke.github.io/bcsim"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
flake8-docstrings = "^1.6.0"
pdoc3 = "^0.10.0"
mypy = "^0.982"
autopep8 = "^1.7.0"
[tool.poetry.scripts]
bcsim = "bcsim.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"