We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 993b54f commit 5d45546Copy full SHA for 5d45546
setup.py
@@ -12,9 +12,6 @@
12
13
here = os.path.abspath(os.path.dirname(__file__))
14
15
-with open(os.path.join(here, 'requirements.txt')) as f:
16
- install_requires = f.read().split('\n')
17
-
18
with open(os.path.join(here, 'README.md')) as readme_file:
19
readme = readme_file.read()
20
@@ -30,7 +27,7 @@
30
27
packages=find_packages(),
31
28
py_modules=[splitext(basename(path))[0] for path in glob('pystac/*.py')],
32
29
include_package_data=False,
33
- install_requires=install_requires,
+ install_requires=["python-dateutil>=2.7.0"],
34
license="Apache Software License 2.0",
35
zip_safe=False,
36
keywords=[
0 commit comments