Skip to content

Commit

Permalink
Migrate from setup.py to pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptomilk committed Oct 22, 2024
1 parent 622b1f1 commit d7fd863
Show file tree
Hide file tree
Showing 32 changed files with 31 additions and 81 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
run: |
sudo apt-get install libkrb5-dev
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
pip3 install -e .
- name: Run tests
run: pushd tests; python3 runner.py; popd
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "cepces"
version = "0.3.9"
dependencies = [
"cryptography >= 1.2",
"requests",
"requests_gssapi >= 1.2.2"
]
license = { file = "LICENSE" }
authors = [
{ name = "Daniel Uvehag", email = "daniel.uvehag@gmail.com" }
]
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"
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

77 changes: 0 additions & 77 deletions setup.py

This file was deleted.

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.

0 comments on commit d7fd863

Please sign in to comment.