31 lines
1 KiB
Python
31 lines
1 KiB
Python
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 :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
],
|
|
python_requires=">=3.8",
|
|
)
|