My First pythonpackage
This commit is contained in:
parent
c26239ffa5
commit
d409bfd11f
1 changed files with 26 additions and 0 deletions
26
pyproject.toml
Normal file
26
pyproject.toml
Normal 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']
|
Loading…
Reference in a new issue