vban-cmd-python/setup.py
onyx-and-iris d1555663b3 migrate nose to pytest
migrate nose to pytest
2022-04-26 07:16:21 +01:00

18 lines
269 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",
]
}
)