Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# repository. For example: MIT
license='MIT',
# Short description of your library
description='Python library for argument and configuration management ',
description='Python library for argument and configuration management',
# Long description of your library
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -38,7 +38,10 @@
# List of keywords
keywords=['parameters', 'configuration', 'decorators'],
# List of packages to install with this one
install_requires=[],
install_requires=[
'pyyaml',
'terminaltables'
],
# https://pypi.org/classifiers/
classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console']
)