py-gitea/setup.py

32 wiersze
824 B
Python
Czysty Zwykły widok Historia

2021-01-05 08:31:25 +00:00
from setuptools import setup, find_packages
with open("README.md") as readme_file:
2021-01-05 08:31:25 +00:00
README = readme_file.read()
setup_args = dict(
name="py-gitea",
2024-01-18 09:18:42 +00:00
version="0.2.8",
description="A python wrapper for the Gitea API",
2021-01-05 08:31:25 +00:00
long_description_content_type="text/markdown",
long_description=README,
license="MIT",
2021-01-05 08:31:25 +00:00
packages=find_packages(),
author="Vincent Langenfeld ",
author_email="langenfv@tf.uni-freiburg.de",
keywords=["Gitea", "api", "wrapper"],
url="https://github.com/Langenfeld/py-gitea",
download_url="https://pypi.org/project/py-gitea/",
2021-01-05 08:31:25 +00:00
)
install_requires = [
"requests",
2024-01-18 09:18:42 +00:00
"immutabledict",
2021-01-05 08:31:25 +00:00
]
extras_require = {"test": ["pytest"]}
if __name__ == "__main__":
setup(
**setup_args, install_requires=install_requires, extras_require=extras_require
2023-02-02 22:05:28 +00:00
)