mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
17 lines
269 B
Python
17 lines
269 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='vban_cmd',
|
||
|
version='0.0.1',
|
||
|
description='VBAN CMD Python API',
|
||
|
packages=['vban_cmd'],
|
||
|
install_requires=[
|
||
|
],
|
||
|
extras_require={
|
||
|
'development': [
|
||
|
'nose',
|
||
|
'randomize',
|
||
|
'parameterized'
|
||
|
]
|
||
|
}
|
||
|
)
|