From ea7b58edb905ee4c7a886d5f10666a194caaf340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 2 Jun 2020 01:10:10 +0200 Subject: [PATCH] Packaging --- .gitignore | 2 ++ pyproject.toml | 3 +++ setup.cfg | 25 +++++++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml create mode 100644 setup.cfg diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e3f1344 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.whl +*.egg-info diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9ba7ec2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=41.0", "setuptools-scm", "wheel"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..293da3f --- /dev/null +++ b/setup.cfg @@ -0,0 +1,25 @@ +[metadata] +name = ferrypick +version = 0.1.dev1 +description = Apply patches from Fedora dist git to different components. +long_description = file: README.md +long_description_content_type = text/markdown +url = https://github.com/fedora-python/ferrypick +keywords = fedora, git +license = CC0 +python_requires = '>=3.8' +packages = find: +classifiers = + License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication + Programming Language :: Python :: 3 + Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Topic :: Software Development :: Version Control :: Git + +[options.entry_points] +console_scripts = + ferrypick = ferrypick:main + +[options] +zip_safe = False