File tree Expand file tree Collapse file tree 3 files changed +5
-13
lines changed Expand file tree Collapse file tree 3 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 6
6
"codeRepository" : " https://github.com/caltechlibrary/caltechdata_api" ,
7
7
"issueTracker" : " https://github.com/caltechlibrary/caltechdata_api/issues" ,
8
8
"license" : " https://data.caltech.edu/license" ,
9
- "version" : " 0.1.8 " ,
9
+ "version" : " 0.1.7 " ,
10
10
"author" : [
11
11
{
12
12
"@type" : " Person" ,
18
18
}],
19
19
"developmentStatus" : " active" ,
20
20
"downloadUrl" :
21
- " https://github.com/caltechlibrary/caltechdata_api/archive/0.1.8 .zip" ,
21
+ " https://github.com/caltechlibrary/caltechdata_api/archive/0.1.5 .zip" ,
22
22
"keywords" : [
23
23
" GitHub" ,
24
24
" metadata" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,13 +16,6 @@ def read(fname):
16
16
src = f .read ()
17
17
return src
18
18
19
- def read_requirements ():
20
- """Parse requirements from requirements.txt."""
21
- reqs_path = os .path .join ('.' , 'requirements.txt' )
22
- with open (reqs_path , 'r' ) as f :
23
- requirements = [line .rstrip () for line in f ]
24
- return requirements
25
-
26
19
codemeta_json = "codemeta.json"
27
20
28
21
# Let's pickup as much metadata as we need from codemeta.json
@@ -57,7 +50,9 @@ def read_requirements():
57
50
REQUIRES_PYTHON = '>=3.7.0'
58
51
59
52
# What packages are required for this module to be executed?
60
- REQUIRED = read_requirements ()
53
+ REQUIRED = [
54
+ 'requests' ,'datacite' ,'tqdm'
55
+ ]
61
56
62
57
# What packages are optional?
63
58
EXTRAS = {
You can’t perform that action at this time.
0 commit comments