vban-cmd-python/setup.py

18 lines
278 B
Python
Raw Normal View History

2022-02-25 15:17:05 +00:00
from setuptools import setup
setup(
name='vbancmd',
2022-02-25 15:17:05 +00:00
version='0.0.1',
description='VBAN CMD Python API',
packages=['vbancmd'],
2022-02-25 15:17:05 +00:00
install_requires=[
'toml'
2022-02-25 15:17:05 +00:00
],
extras_require={
'development': [
'nose',
'randomize',
'parameterized'
]
}
)