1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Initial pass at script/update-requirements, results of run

This commit is contained in:
Ross McFarland
2022-01-26 17:47:31 -08:00
parent 5710a7ffeb
commit e25b618e95
8 changed files with 118 additions and 27 deletions

View File

@@ -62,7 +62,7 @@ setup(
entry_points={
'console_scripts': console_scripts,
},
install_requires=[
install_requires=(
'PyYaml>=4.2b1',
'dnspython>=1.15.0',
'fqdn>=1.5.0',
@@ -70,8 +70,8 @@ setup(
'pycountry>=19.8.18',
'pycountry-convert>=0.7.2',
'python-dateutil>=2.8.1',
'requests>=2.20.0'
],
'requests>=2.20.0',
),
license='MIT',
long_description=long_description(),
long_description_content_type='text/markdown',
@@ -81,7 +81,7 @@ setup(
url='https://github.com/octodns/octodns',
version=octodns.__VERSION__,
tests_require=(
'pytest',
'pytest-network',
'pytest>=6.2.5',
'pytest-network>=0.0.1',
),
)