-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
37 lines (34 loc) · 973 Bytes
/
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
[build-system]
requires = ["setuptools",
"Cython>=0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "pari-jupyter"
description = "A Jupyter kernel for PARI/GP"
authors = [
{name = "Jeroen Demeyer"},
]
maintainers = [
{name = "SageMath developers", email = "[email protected]"},
]
dependencies = [
"ipykernel",
]
requires-python = ">=3.8"
readme = "README.rst"
license = {text = "GNU General Public License (GPL) version 3 or later"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Cython",
"Topic :: Scientific/Engineering :: Mathematics",
]
dynamic = [
"version",
]
[project.urls]
Homepage = "https://github.com/sagemath/pari-jupyter"
[tool.setuptools.dynamic]
version = {attr = "PARIKernel.__version__"}