-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (64 loc) · 1.47 KB
/
pyproject.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "adeso"
version = "0.0.4"
authors = [
{ name="Eric Jay Hartman", email="ericjayhartman@gmail.com" },
]
description = "Application for Decryption, Encryption and Steganographic Operations"
readme = "README.md"
requires-python = ">=3.11.1"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"bitarray==2.7.6",
"blinker==1.6.2",
"certifi==2023.5.7",
"cffi==1.15.1",
"charset-normalizer==3.1.0",
"click==8.1.3",
"colorama==0.4.6",
"cryptography==41.0.1",
"Flask==2.3.2",
"Flask-Cors==4.0.0",
"ghp-import==2.1.0",
"idna==3.4",
"itsdangerous==2.1.2",
"Jinja2==3.1.2",
"Markdown==3.3.7",
"MarkupSafe==2.1.3",
"mergedeep==1.3.4",
"mkdocs==1.4.3",
"mkdocs-material==9.1.18",
"mkdocs-material-extensions==1.1.1",
"numpy==1.25.0",
"packaging==23.1",
"Pillow==10.0.0",
"pycparser==2.21",
"Pygments==2.15.1",
"pymdown-extensions==10.0.1",
"python-dateutil==2.8.2",
"PyYAML==6.0",
"pyyaml_env_tag==0.1",
"regex==2023.6.3",
"requests==2.31.0",
"six==1.16.0",
"urllib3==2.0.3",
"watchdog==3.0.0",
"Werkzeug==2.3.6",
]
[project.urls]
"Github" = "https://github.com/HartmanAnalytics/adeso"
"Documentation" = "https://HartmanAnalytics.github.io/adeso/"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.build.targets.wheel]
packages = ["src/adeso"]