pub-worm 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pub_worm-0.0.1/MANIFEST.in +5 -0
- pub_worm-0.0.1/PKG-INFO +31 -0
- pub_worm-0.0.1/README.md +20 -0
- pub_worm-0.0.1/pub_worm/impact_factor/data/2022_JCR_IF.csv +12428 -0
- pub_worm-0.0.1/pub_worm/wormbase/data/wormbase_field_gene.json +24 -0
- pub_worm-0.0.1/pub_worm/wormbase/data/wormbase_field_paper.json +5 -0
- pub_worm-0.0.1/pub_worm/wormbase/data/wormbase_widget_gene.json +56 -0
- pub_worm-0.0.1/pub_worm.egg-info/PKG-INFO +31 -0
- pub_worm-0.0.1/pub_worm.egg-info/SOURCES.txt +13 -0
- pub_worm-0.0.1/pub_worm.egg-info/dependency_links.txt +1 -0
- pub_worm-0.0.1/pub_worm.egg-info/not-zip-safe +1 -0
- pub_worm-0.0.1/pub_worm.egg-info/requires.txt +1 -0
- pub_worm-0.0.1/pub_worm.egg-info/top_level.txt +1 -0
- pub_worm-0.0.1/setup.cfg +4 -0
- pub_worm-0.0.1/setup.py +31 -0
pub_worm-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pub_worm
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Wormbase/PudMed API Access
|
|
5
|
+
Home-page: https://github.com/DanHUMassMed/pub_worm.git
|
|
6
|
+
Author: Dan Higgins
|
|
7
|
+
Author-email: daniel.higgins@yahoo.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: pandas
|
|
11
|
+
|
|
12
|
+
# pub_worm
|
|
13
|
+
API integration of Wormbase and NCBI Utils
|
|
14
|
+
|
|
15
|
+
Call from the commandline
|
|
16
|
+
$PYTHONPATH="./src" python -m pub_worm.wormbase.WormbaseREST
|
|
17
|
+
|
|
18
|
+
#### Deploy
|
|
19
|
+
* Advance the version number in setup.py
|
|
20
|
+
* `conda deactivate # twine is installed in base env`
|
|
21
|
+
* `increment setup.py version`
|
|
22
|
+
* `cd <project directory>`
|
|
23
|
+
* `rm -rf ./dist`
|
|
24
|
+
* `rm -rf ./wormcat_batch.egg-info`
|
|
25
|
+
* `python setup.py sdist`
|
|
26
|
+
* `twine check dist/*`
|
|
27
|
+
* `twine upload --repository pypi dist/*`
|
|
28
|
+
* `git add .`
|
|
29
|
+
* `git commit -m "some comment"`
|
|
30
|
+
* `git push`
|
|
31
|
+
|
pub_worm-0.0.1/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# pub_worm
|
|
2
|
+
API integration of Wormbase and NCBI Utils
|
|
3
|
+
|
|
4
|
+
Call from the commandline
|
|
5
|
+
$PYTHONPATH="./src" python -m pub_worm.wormbase.WormbaseREST
|
|
6
|
+
|
|
7
|
+
#### Deploy
|
|
8
|
+
* Advance the version number in setup.py
|
|
9
|
+
* `conda deactivate # twine is installed in base env`
|
|
10
|
+
* `increment setup.py version`
|
|
11
|
+
* `cd <project directory>`
|
|
12
|
+
* `rm -rf ./dist`
|
|
13
|
+
* `rm -rf ./wormcat_batch.egg-info`
|
|
14
|
+
* `python setup.py sdist`
|
|
15
|
+
* `twine check dist/*`
|
|
16
|
+
* `twine upload --repository pypi dist/*`
|
|
17
|
+
* `git add .`
|
|
18
|
+
* `git commit -m "some comment"`
|
|
19
|
+
* `git push`
|
|
20
|
+
|