10 lines
162 B
Python
10 lines
162 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='config_helpers',
|
||
|
packages=['preset_loader'],
|
||
|
install_requires=[
|
||
|
"ruamel.yaml==0.15.87"
|
||
|
]
|
||
|
)
|