vban-cmd-python/setup.py

11 lines
262 B
Python
Raw Normal View History

2022-02-25 15:17:05 +00:00
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]"]},
)