26 lines
678 B
TOML
26 lines
678 B
TOML
[build-system]
|
|
requires = ["setuptools >= 58.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "padic"
|
|
version = "0.0.2"
|
|
authors = [
|
|
{ name="Beat Jäckle", email="beat@git.jdmweb2.ch" },
|
|
]
|
|
description = "class for p-adic number fields"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GPL3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.jdmweb2.ch/beat/p-adic-numbers"
|
|
"Bug Tracker" = "https://git.jdmweb2.ch/beat/p-adic-numbers/issues"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ['hensel', 'modp', 'poly', 'padic']
|