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 66 "codeRepository" : " https://github.com/caltechlibrary/caltechdata_api" ,
77 "issueTracker" : " https://github.com/caltechlibrary/caltechdata_api/issues" ,
88 "license" : " https://data.caltech.edu/license" ,
9- "version" : " 0.1.8 " ,
9+ "version" : " 0.1.7 " ,
1010 "author" : [
1111 {
1212 "@type" : " Person" ,
1818 }],
1919 "developmentStatus" : " active" ,
2020 "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" ,
2222 "keywords" : [
2323 " GitHub" ,
2424 " metadata" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,13 +16,6 @@ def read(fname):
1616 src = f .read ()
1717 return src
1818
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-
2619codemeta_json = "codemeta.json"
2720
2821# Let's pickup as much metadata as we need from codemeta.json
@@ -57,7 +50,9 @@ def read_requirements():
5750REQUIRES_PYTHON = '>=3.7.0'
5851
5952# What packages are required for this module to be executed?
60- REQUIRED = read_requirements ()
53+ REQUIRED = [
54+ 'requests' ,'datacite' ,'tqdm'
55+ ]
6156
6257# What packages are optional?
6358EXTRAS = {
You can’t perform that action at this time.
0 commit comments