Skip to content

Commit

Permalink
Improve pyproject.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
James-E-A committed Feb 13, 2024
1 parent 40a7796 commit 085950e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[project]
name = "pypqc"
version = "0.0.6.2.post1"
description = "Python bindings for the \"PQClean\" post-quantum cryptography library."
readme = "README.rst"
urls = {"Homepage" = "https://github.com/JamesTheAwesomeDude/pypqc"}
name = 'pypqc'
version = '0.0.6.2.post1'
description = 'Python bindings for the "PQClean" post-quantum cryptography library.'
readme = 'README.rst'
license.file = 'COPYING.rst'
urls = { Homepage = 'https://github.com/JamesTheAwesomeDude/pypqc', Upstream = 'https://github.com/PQClean/PQClean' }
dependencies = [
'cffi >= 1.0.0;platform_python_implementation != "PyPy"',
]

[tool.setuptools.packages.find]
include = ["pqc"]
include = ['pqc']
namespaces = false

[build-system]
Expand All @@ -20,5 +21,5 @@ requires = [
]

[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
quote-style = 'single'
indent-style = 'tab'

0 comments on commit 085950e

Please sign in to comment.