-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from cryptomilk/asn-pyproject
Migrate from setup.py to pyproject
- Loading branch information
Showing
33 changed files
with
82 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "cepces" | ||
version = "0.3.9" | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"cryptography >= 1.2", | ||
"requests", | ||
"requests_gssapi >= 1.2.2" | ||
] | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "Daniel Uvehag", email = "[email protected]" } | ||
] | ||
keywords = ["certificate ca cep ces adcs wstep xcep"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: System Administrators", | ||
"Topic :: System :: Systems Administration", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
] | ||
description = "CEP/CES library." | ||
readme = "README.rst" | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/openSUSE/cepces" | ||
"Bug Tracker" = "https://github.com/openSUSE/cepces/issues" | ||
|
||
[tool.setuptools.data-files] | ||
"libexec/certmonger" = ["bin/cepces-submit"] |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[tox] | ||
requires = | ||
tox>=4 | ||
env_list = lint, type, 3.9, 3.10, 3.11, 3.12, 3.13 | ||
|
||
[gh-actions] | ||
python = | ||
3.9: py39 | ||
3.10: py310, mypy | ||
3.11: py311, mypy | ||
3.12: py312, mypy | ||
3.13: py313, mypy | ||
|
||
[testenv] | ||
description = run unit tests | ||
changedir = tests | ||
commands = {envpython} runner.py | ||
|
||
; [testenv:lint] | ||
; description = run linters | ||
; skip_install = true | ||
; deps = | ||
; black | ||
; commands = black {posargs:.} | ||
; | ||
; [testenv:type] | ||
; description = run type checks | ||
; deps = | ||
; mypy | ||
; commands = | ||
; mypy {posargs:src tests} |