-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 879 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "notscared"
version = "0.0.1"
authors = [
{ name="Preston Petersen", email="" },
{ name="Jadon Procter", email="[email protected]" },
{ name="Lucian Haj", email="[email protected]" },
{ name="Shawn Robinson", email="[email protected]" },
]
description = "A high-performance SCA library for datasets that include NxM EM trace grids."
readme = "readme.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/decryptofy/notscared"
"Bug Tracker" = "https://github.com/decryptofy/notscared/issues"
[tool.autopep8]
ignore = "E501,W6" # or ["E501", "W6"]
in-place = true
recursive = true
aggressive = 3