mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
d1555663b3
migrate nose to pytest
18 lines
269 B
Python
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",
|
|
]
|
|
}
|
|
)
|