-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.32 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
[project]
name = "symengine"
dynamic = ["version"]
description = "Python library providing wrappers to SymEngine"
authors = [
{name = "SymEngine development team", email="symengine@googlegroups.com"},
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.8"
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'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',
]
[project.urls]
Homepage = "https://symengine.org"
Documentation = "https://symengine.org/symengine.py"
Repository = "https://github.com/symengine/symengine.py"
Issues = "https://github.com/symengine/symengine.py/issues"
[build-system]
requires = ["scikit-build-core", "cython>=0.29.14", "setuptools-scm", "cython-cmake"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["symengine/_version.py"]
editable.mode = "inplace"
[tool.setuptools_scm] # Section required
write_to = "symengine/_version.py"