Administrator/setup.py
Ethanell c9b83df928
All checks were successful
Build / SonarQube (push) Successful in 24s
Build / Tests (push) Successful in 1m36s
Build / Deploy (push) Successful in 1m15s
CI Add tests and package deploy
2024-02-19 20:44:34 +01:00

26 lines
721 B
Python

from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name='administrator',
setuptools_git_versioning={
"enabled": True,
"version_file": "VERSION",
"count_commits_from_version_file": True,
"dev_template": "{tag}.dev{ccount}",
"dirty_template": "{tag}.{branch}{ccount}",
},
setup_requires=["setuptools-git-versioning"],
description='All purpose Discord bot',
long_description=readme,
author='Ethanell',
author_email='ethanell@flifloo.fr',
url='https://git.flifloo.fr/flifloo/Administrator',
license="GNU General Public License v3.0",
packages=find_packages(exclude=('tests', 'docs'))
)