mirror of
https://github.com/Skyai-io/landsat-util.git
synced 2026-03-10 09:01:18 +00:00
update requirements order
This commit is contained in:
20
requirements-dev.txt
Normal file
20
requirements-dev.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
usgs==0.1.9
|
||||
requests==2.7.0
|
||||
python-dateutil==2.5.1
|
||||
numpy==1.10.4
|
||||
termcolor==1.1.0
|
||||
rasterio==0.32.0
|
||||
six==1.8.0
|
||||
scipy==0.17.0
|
||||
scikit-image==0.12.3
|
||||
homura==0.1.3
|
||||
boto==2.39.0
|
||||
polyline==1.1
|
||||
geocoder==1.9.0
|
||||
matplotlib==1.5.1
|
||||
pdoc>=0.3.1
|
||||
nose>=1.3.7
|
||||
coverage>=4.0
|
||||
Sphinx>=1.3.1
|
||||
wheel>=0.26.0
|
||||
mock>=1.3.0
|
||||
@@ -1,2 +1,14 @@
|
||||
-r requirements/base.txt
|
||||
|
||||
usgs==0.1.9
|
||||
requests==2.7.0
|
||||
python-dateutil==2.5.1
|
||||
numpy==1.10.4
|
||||
termcolor==1.1.0
|
||||
rasterio==0.32.0
|
||||
six==1.8.0
|
||||
scipy==0.17.0
|
||||
scikit-image==0.12.3
|
||||
homura==0.1.3
|
||||
boto==2.39.0
|
||||
polyline==1.1
|
||||
geocoder==1.9.0
|
||||
matplotlib==1.5.1
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
-r docker.txt
|
||||
|
||||
numpy>=1.9.3
|
||||
scipy>=0.16.0
|
||||
scikit-image>=0.11.3
|
||||
@@ -1,7 +0,0 @@
|
||||
-r base.txt
|
||||
pdoc>=0.3.1
|
||||
nose>=1.3.7
|
||||
coverage>=4.0
|
||||
Sphinx>=1.3.1
|
||||
wheel>=0.26.0
|
||||
mock>=1.3.0
|
||||
@@ -1,11 +0,0 @@
|
||||
requests==2.7.0
|
||||
python-dateutil>=2.4.2
|
||||
termcolor>=1.1.0
|
||||
rasterio>=0.27.0
|
||||
six==1.8.0
|
||||
homura>=0.1.2
|
||||
boto>=2.38.0
|
||||
polyline==1.1
|
||||
geocoder>=1.5.1
|
||||
jsonschema==2.5.1
|
||||
usgs==0.1.9
|
||||
27
setup.py
27
setup.py
@@ -15,10 +15,11 @@ def readme():
|
||||
with open('README.rst') as f:
|
||||
return f.read()
|
||||
|
||||
test_requirements = [
|
||||
'nose>=1.3.7',
|
||||
'mock>=1.3.0'
|
||||
]
|
||||
with open('requirements.txt') as fid:
|
||||
INSTALL_REQUIRES = [l.strip() for l in fid.readlines() if l]
|
||||
|
||||
with open('requirements-dev.txt') as fid:
|
||||
TEST_REQUIRES = [l.strip() for l in fid.readlines() if l]
|
||||
|
||||
setup(
|
||||
name='landsat-util',
|
||||
@@ -34,21 +35,7 @@ setup(
|
||||
include_package_data=True,
|
||||
license='CCO',
|
||||
platforms='Posix; MacOS X; Windows',
|
||||
install_requires=[
|
||||
'usgs==0.1.9',
|
||||
'requests==2.7.0',
|
||||
'python-dateutil>=2.4.2',
|
||||
'numpy>=1.9.3',
|
||||
'termcolor>=1.1.0',
|
||||
'rasterio>=0.26.0',
|
||||
'six==1.8.0',
|
||||
'scipy>=0.16.0',
|
||||
'scikit-image>=0.11.3',
|
||||
'homura>=0.1.2',
|
||||
'boto>=2.38.0',
|
||||
'polyline==1.1',
|
||||
'geocoder>=1.5.1'
|
||||
],
|
||||
install_requires=INSTALL_REQUIRES,
|
||||
test_suite='nose.collector',
|
||||
tests_require=test_requirements
|
||||
tests_require=TEST_REQUIRES
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user