File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ pyTMD==2.0.5
14
14
pandas==1.5.3
15
15
pygeos==0.14
16
16
pyproj==3.4.1
17
+ pytest
17
18
pytz==2023.3
18
19
rasterio==1.3.4
19
20
seaborn==0.13.0
Original file line number Diff line number Diff line change 6
6
# Where are we?
7
7
IS_SANDBOX = "sandbox" in os .getenv ("JUPYTER_IMAGE" , default = "" )
8
8
9
- tests_require = [
10
- "pytest" ,
11
- "pytest-dependency" ,
12
- "pytest-cov" ,
13
- ]
14
-
15
- extras = {
16
- "test" : tests_require ,
17
- }
18
-
19
9
# What packages are required for this module to be executed?
20
10
REQUIRED = [
21
11
"aiohttp" ,
35
25
"pygeos" ,
36
26
"pyproj" ,
37
27
"pyTMD>=2.0.0" ,
28
+ "pytest" ,
38
29
"pytz" ,
39
30
"rasterio" ,
40
31
"setuptools-scm" ,
68
59
"python_requires" : REQUIRES_PYTHON ,
69
60
"url" : URL ,
70
61
"install_requires" : REQUIRED if not IS_SANDBOX else [],
71
- "tests_require" : tests_require ,
72
- "extras_require" : extras ,
73
62
"packages" : find_packages (),
74
63
"include_package_data" : True ,
75
64
"license" : "Apache License 2.0" ,
You can’t perform that action at this time.
0 commit comments