initial commit
This commit is contained in:
43
pyproject.toml
Normal file
43
pyproject.toml
Normal file
@@ -0,0 +1,43 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "jpacrepo-uploader"
|
||||
version = "0.0.1"
|
||||
authors = [
|
||||
{ name="Walter Oggioni", email="oggioni.walter@gmail.com" },
|
||||
]
|
||||
description = "Jpacrepo package uploader"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
dependencies = [
|
||||
"oidc-client >= 0.2.6",
|
||||
'certifi==2023.7.22',
|
||||
'progress==1.6',
|
||||
'pycurl==7.45.2',
|
||||
'types-pycurl==7.45.2.5',
|
||||
'typing_extensions==4.7.1'
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
"Homepage" = "https://github.com/woggioni/jpacrepo-uploader"
|
||||
"Bug Tracker" = "https://github.com/woggioni/jpacrepo-uploader/issues"
|
||||
|
||||
[project.scripts]
|
||||
jpacrepo-uploader = "jpacrepo_uploader.uploader:main"
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.10"
|
||||
disallow_untyped_defs = true
|
||||
show_error_codes = true
|
||||
no_implicit_optional = true
|
||||
warn_return_any = true
|
||||
warn_unused_ignores = true
|
||||
exclude = ["scripts", "docs", "test"]
|
||||
strict = true
|
Reference in New Issue
Block a user