vban-cmd-python/setup.py
onyx-and-iris 596e7465fb add pre-commit hook
keep tests random
print kind.name to pytest output

add genbadge to dev dependencies

add test badges to readme
2022-04-28 11:34:48 +01:00

11 lines
262 B
Python

from setuptools import setup
setup(
name="vbancmd",
version="0.0.1",
description="VBAN CMD Python API",
packages=["vbancmd"],
install_requires=["toml"],
extras_require={"development": ["pytest", "pytest-randomly", "genbadge[tests]"]},
)