py-gitea/setup.py

28 wiersze
746 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:
README = readme_file.read()
setup_args = dict(
name='py-gitea',
version='0.2.3',
2021-01-05 08:31:25 +00:00
description='A python wrapper for the Gitea API',
long_description_content_type="text/markdown",
long_description=README,
license='MIT',
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/'
)
install_requires = [
'requests',
'frozendict',
2021-01-05 08:31:25 +00:00
'pytest'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)