Initial actual commit
This commit is contained in:
parent
e555b62c06
commit
22d338eac2
7 changed files with 84 additions and 43 deletions
28
setup.py
Normal file
28
setup.py
Normal 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",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue