My First pythonpackage

This commit is contained in:
Beat Jäckle 2022-08-08 11:43:04 +02:00
parent c26239ffa5
commit d409bfd11f

26
pyproject.toml Normal file
View file

@ -0,0 +1,26 @@
[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']