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
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pycrc"
version = "0.10.0"
authors = [
{ name="Thomas Pircher", email="tehpeh-web@tty1.net" },
]
description = "A free, easy to use Cyclic Redundancy Check source code generator for C/C++"
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://pycrc.org"
"Bug Tracker" = "https://github.com/tpircher/pycrc/issues"
[project.scripts]
pycrc = "pycrc.main:main"
|