mirror of
https://codeberg.org/privacy1st/subprocess-util
synced 2024-12-22 22:06:05 +01:00
37 lines
1.0 KiB
INI
37 lines
1.0 KiB
INI
|
; setup.cfg is the configuration file for setuptools.
|
||
|
; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
|
||
|
|
||
|
[metadata]
|
||
|
name = subprocess-util
|
||
|
version = 0.0.1
|
||
|
author = Daniel Langbein
|
||
|
author_email = daniel@systemli.org
|
||
|
description = subprocess utility functions
|
||
|
long_description = file: README.md
|
||
|
long_description_content_type = text/markdown
|
||
|
url = https://codeberg.org/privacy1st/subprocess_util
|
||
|
project_urls =
|
||
|
Bug Tracker = https://codeberg.org/privacy1st/subprocess_util/issues
|
||
|
|
||
|
; https://pypi.org/classifiers/
|
||
|
classifiers =
|
||
|
Development Status :: 4 - Beta
|
||
|
Programming Language :: Python :: 3
|
||
|
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
|
||
|
Operating System :: Unix
|
||
|
|
||
|
[options]
|
||
|
package_dir =
|
||
|
= src
|
||
|
packages = find:
|
||
|
python_requires = >=3.10.0
|
||
|
|
||
|
[options.packages.find]
|
||
|
where = src
|
||
|
|
||
|
[options.entry_points]
|
||
|
; https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html
|
||
|
console_scripts =
|
||
|
btrfs-send-chunks = p1st.btrfs_send_chunks:main
|
||
|
btrfs-receive-chunks = p1st.btrfs_receive_chunks:main
|