|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"] |
| 2 | +requires = ["setuptools>=61", "wheel", "setuptools_scm>=6.2"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "python-barcode" |
| 7 | +description = "Create standard barcodes with Python. No external modules needed. (optional Pillow support included)." |
| 8 | +readme = "README.rst" |
| 9 | +requires-python = ">=3.9" |
| 10 | +license = { text = "MIT" } |
| 11 | +authors = [ |
| 12 | + { name = "Hugo Osvaldo Barrera et al", email = "[email protected]" } |
| 13 | +] |
| 14 | +urls = { |
| 15 | + documentation= "https://python-barcode.readthedocs.io/", |
| 16 | + repository = "https://github.com/WhyNotHugo/python-barcode", |
| 17 | + issues = "https://github.com/WhyNotHugo/python-barcode/issues", |
| 18 | + funding= "https://whynothugo.nl/sponsor/", |
| 19 | +} |
| 20 | +classifiers = [ |
| 21 | + "Development Status :: 5 - Production/Stable", |
| 22 | + "Environment :: Console", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.9", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Topic :: Multimedia :: Graphics", |
| 33 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 34 | +] |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +images = ["pillow"] |
| 38 | + |
| 39 | +[project.scripts] |
| 40 | +python-barcode = "barcode.pybarcode:main" |
| 41 | + |
| 42 | +[tool.setuptools] |
| 43 | +include-package-data = true |
| 44 | + |
| 45 | +[tool.setuptools.packages.find] |
| 46 | +exclude = ["tests"] |
3 | 47 |
|
4 | 48 | [tool.setuptools_scm]
|
5 | 49 | write_to = "barcode/version.py"
|
|
0 commit comments