From c0f46a60749c147a91410a8f83ca372c1a459bda Mon Sep 17 00:00:00 2001 From: Ondrej Nosek Date: Mar 30 2021 00:06:57 +0000 Subject: 1.2.0 Release Configured 'setup.py' environment that allows creating tarball by command: `python3 setup.py sdist`. Signed-off-by: Ondrej Nosek --- diff --git a/AUTHORS.md b/AUTHORS.md index 654b506..9564620 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -3,3 +3,4 @@ Pavol Babincak Jesse Keating Till Maas Lubomír Sedlář +Ondřej Nosek diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..bb2fa5c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +include AUTHORS.md +include LICENSE +include README.md +recursive-include tests * + +exclude setup.py +exclude MANIFEST.in diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..57525b6 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python3 + +from setuptools import setup + + +setup( + name="fedpkg-minimal", + version="1.2.0", + author="Dennis Gilmore", + author_email="dgilmore@fedoraproject.org", + description="Helper script for Fedora buildystem to fetch sources.", + license="GPLv2+", + url="https://pagure.io/fedpkg-minimal", + scripts=["bin/fedpkg", "bin/fedpkg-stg", "bin/fedpkg-base"], + platforms="linux", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Operating System :: POSIX :: Linux", + "Intended Audience :: Developers", + "Topic :: Software Development :: Build Tools", + "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", + "Programming Language :: Unix Shell", + ], +)