-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cipher-algorithms"
version = "0.0.1"
description = "A collections of cipher algorithms"
readme = "README.md"
requires-python = ">=3.8,<4.0"
license = { file = "LICENSE" }
authors = [
{ name = "Dante Terminella", email = "dterm@ischool.berkeley.edu" },
{ name = "Osman Sharaf", email = "sharafosman@ischool.berkeley.edu" },
{ name = "Christopher Black", email = "christopherblack@ischool.berkeley.edu" },
{ name = "Lucas Swartsenburg", email = "lswartsenburg@ischool.berkeley.edu" },
]
dependencies = ['importlib_resources==6.1.1', 'numpy==1.24.4']
[project.scripts]
ciphy = "cipher_algorithms.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["./src"]
[tool.setuptools.package-data]
"*" = ["*.txt"]