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.
@@ -0,0 +1,5 @@
1
+ include README.md
2
+ include pub_worm/impact_factor/data/2022_JCR_IF.csv
3
+ include pub_worm/wormbase/data/wormbase_field_gene.json
4
+ include pub_worm/wormbase/data/wormbase_field_paper.json
5
+ include pub_worm/wormbase/data/wormbase_widget_gene.json
@@ -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
+
@@ -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
+