mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
596e7465fb
keep tests random print kind.name to pytest output add genbadge to dev dependencies add test badges to readme
11 lines
262 B
Python
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]"]},
|
|
)
|