-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.15 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages=[
"mathparse",
]
[tool.setuptools.dynamic]
version = {attr = "mathparse.__version__"}
[project]
name = "mathparse"
requires-python = ">=3.9,<3.14"
urls = { Documentation = "https://mathparse.chatterbot.us", Repository = "https://github.com./gunthercox/mathparse", Changelog = "https://github.com./gunthercox/mathparse/releases" }
authors = [
{name = "Gunther Cox"},
]
license = "MIT"
description = "mathparse is a library for solving mathematical equations contained in strings"
readme = "README.md"
dynamic = ["version"]
keywords = [
"mathparse",
"mathematics",
"math",
"nlp",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python",
]
[project.optional-dependencies]
test = [
"flake8",
"sphinx>=7.4,<9.0"
]