Initial actual commit

This commit is contained in:
Paul Fey 2025-07-05 13:20:11 +02:00
parent e555b62c06
commit 22d338eac2
7 changed files with 84 additions and 43 deletions

28
setup.py Normal file
View file

@ -0,0 +1,28 @@
from setuptools import setup, find_packages
setup(
name="rodeo-builder",
version="0.1",
description="Tool for building rodeo packages",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="pauljako",
url="https://git.pauljako.de/rodeo/rodeo-builder",
packages=find_packages(),
entry_points={
"console_scripts": [
"rodeo-builder=builder:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
)