-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (43 loc) · 1.97 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
54
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dice_calc"
dynamic = ["version"]
description = "Advanced Calculator for Dice"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Ar-Kareem" }
]
maintainers = [
{ name = "Ar-Kareem" }
]
keywords = ["dice", "calculator", "probability", "statistics", "math", "dice-notation", "dice-roller", "dice-roller-simulator", "dice-notation-parser", "dice-notation-compiler", "dice-notation-interpreter", "dice-notation-evaluator", "dice-notation-calculator", "dice-notation-solver", "dice-notation-simulator", "dice-notation-optimizer", "anydice", "anydice-compiler", "anydice-interpreter", "anydice-evaluator", "anydice-calculator", "anydice-solver", "anydice-simulator", "python-dice"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9.0"
[project.urls]
Homepage = "https://github.com/Ar-Kareem/PythonDice/"
Repository = "https://github.com/Ar-Kareem/PythonDice/"
Issues = "https://github.com/Ar-Kareem/PythonDice/issues"
[tool.setuptools]
package-dir = {"dice_calc" = "src", "dice_calc.parser" = "src/parser", "dice_calc.parser.ply" = "src/parser/ply"}
packages = [
"dice_calc",
"dice_calc.parser",
"dice_calc.parser.ply"
]
[tool.setuptools.dynamic]
version = {attr = "dice_calc.__version__"}
#build and pypi push rm dist/* && python -m build --sdist --wheel && python -m twine upload --repository pypi dist/*
# test package locally pip uninstall -y dice_calc ; pip install ..\..\..\pythondice\dist\dice_calc-0.0.9.tar.gz ; python ./test.py