File: pyproject.toml

package info (click to toggle)
python-asteval 1.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 296 kB
  • sloc: python: 2,606; makefile: 53
file content (51 lines) | stat: -rw-r--r-- 1,518 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "asteval/version.py"
version_scheme = "post-release"

[tool.setuptools.packages.find]
include = ["asteval"]

[tool.coverage.run]
omit = ["tests/*"]

[tool.pytest.ini_options]
addopts = "--cov=asteval --cov-report html"

[project]
name = "asteval"
dynamic = ["version"]
requires-python = ">= 3.9"
description = "Safe, minimalistic evaluator of python expression using ast module"
readme = "README.rst"
authors = [
     {name = "Matthew Newville", email = "matt.newville@gmail.com"}
]
license = {file = "LICENSE"}
keywords = ["AST", "expression evaluation", "eval"]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: Implementation :: PyPy",
    ]

[project.urls]
Homepage = " https://github.com/lmfit/asteval"
Documentation = "https://lmfit.github.io/asteval/"
Tracker = "https://github.com/lmfit/asteval/issues"

[project.optional-dependencies]
dev = ["build", "twine"]
doc = ["Sphinx"]
test = ["pytest", "pytest-cov", "coverage"]
all = ["asteval[dev, doc, test]"]