-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e5293f
commit b3b1e02
Showing
9 changed files
with
112 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*.egg-info | ||
*.pyc | ||
build/ | ||
dist/ | ||
.coverage | ||
coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
coverage: | ||
status: | ||
project: off | ||
patch: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,59 @@ | ||
[tool.black] | ||
line-length = 100 | ||
exclude = ''' | ||
/( | ||
\.git | ||
| \.github | ||
| .*\.egg-info | ||
| build | ||
| dist | ||
)/ | ||
''' | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "bin2coe" | ||
authors = [ | ||
{ name = "Anish Athalye", email = "[email protected]" }, | ||
] | ||
description = "A tool to convert binary files to COE files" | ||
readme = "README.md" | ||
requires-python = ">=3.6" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Utilities", | ||
] | ||
keywords = ["xilinx", "coe", "bram"] | ||
dynamic = ["version"] | ||
|
||
[project.scripts] | ||
bin2coe = "bin2coe.cli:main" | ||
|
||
[project.urls] | ||
homepage = "https://github.com/anishathalye/bin2coe" | ||
repository = "https://github.com/anishathalye/bin2coe.git" | ||
issues = "https://github.com/anishathalye/bin2coe/issues" | ||
|
||
[tool.hatch.version] | ||
path = "src/bin2coe/__init__.py" | ||
|
||
[[tool.hatch.envs.hatch-test.matrix]] | ||
python = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"] | ||
|
||
[tool.hatch.envs.types] | ||
extra-dependencies = [ | ||
"pytest", | ||
"mypy>=1.0.0", | ||
] | ||
|
||
[tool.hatch.envs.types.scripts] | ||
check = "mypy --strict --install-types --non-interactive {args:src tests}" | ||
|
||
[tool.hatch.envs.coverage] | ||
detached = true | ||
dependencies = [ | ||
"coverage", | ||
] | ||
|
||
[tool.hatch.envs.coverage.scripts] | ||
html = "coverage html" | ||
xml = "coverage xml" | ||
|
||
[tool.ruff.lint] | ||
ignore = [ | ||
"FA100", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters