1
0
mirror of https://github.com/ansible/mazer.git synced 2026-02-05 12:45:17 +01:00

Add 'attrs' to setup.py deps, '-e .' requirements.txt

This commit is contained in:
Adrian Likins
2018-08-08 16:00:46 -04:00
parent e95d06e88c
commit 087cd812e5
2 changed files with 6 additions and 14 deletions

View File

@@ -1,15 +1,3 @@
six
PyYaml
--index-url https://pypi.python.org/simple/
# for loading yaml into ordered dicts
yamlloader
# TODO: we can likely eliminate this
jinja2
# Used if we need offline version compares
semver
# used for data classes
# 18.1.0 introduces the 'factory' keyword
attrs>=18.1.0
-e .

View File

@@ -14,7 +14,11 @@ with open('HISTORY.rst') as history_file:
requirements = ['six',
'PyYaml',
'jinja2',
'semver',
'yamlloader',
# used for data classes
# 18.1.0 introduces the 'factory' keyword
'attrs>=18.1.0',
]
setup_requirements = ['pytest-runner', ]