Skip to content

Commit

Permalink
Add pyproject.toml; remove setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hakavlad committed Aug 5, 2024
1 parent 06fe87e commit e8091e0
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 48 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[build-system]
requires = [
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"

[project]
name = "tird"
version = "0.16.0"
license = { text = "CC0-1.0", url = "https://creativecommons.org/publicdomain/zero/1.0/" }
maintainers = [
{ name = "Alexey Avramov", email = "[email protected]" },
]
description = "A tool for encrypting files and hiding encrypted data"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = [
"encryption",
"hiding",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
]
dependencies = [
"pycryptodomex>=3.6.2",
"pynacl>=1.2.0",
]
requires-python = ">=3.6"

[project.urls]
"Bug Tracker" = "https://github.com/hakavlad/tird/issues"
"Documentation" = "https://github.com/hakavlad/tird/blob/main/README.md"
"Homepage" = "https://github.com/hakavlad/tird"
"Repository" = "https://github.com/hakavlad/tird"

[project.scripts]
tird = "tird.tird:main"
48 changes: 0 additions & 48 deletions setup.py

This file was deleted.

0 comments on commit e8091e0

Please sign in to comment.