File: pyproject.toml

package info (click to toggle)
pycrc 0.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 512 kB
  • sloc: python: 2,865; xml: 655; ansic: 227; sh: 207; makefile: 22
file content (25 lines) | stat: -rw-r--r-- 645 bytes parent folder | download
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"