Initial version
This commit is contained in:
commit
42996b0f4e
31 changed files with 933 additions and 0 deletions
37
citer.egg-info/PKG-INFO
Normal file
37
citer.egg-info/PKG-INFO
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
Metadata-Version: 2.4
|
||||
Name: citer
|
||||
Version: 0.1.0
|
||||
Summary: CLI to create APA style citations from arXiv IDs or DOIs
|
||||
Requires-Python: >=3.9
|
||||
Description-Content-Type: text/markdown
|
||||
Requires-Dist: requests>=2.31.0
|
||||
|
||||
# Citer
|
||||
|
||||
Simple CLI that turns an arXiv ID/URL or DOI/URL into a single-line APA citation.
|
||||
|
||||
## Setup
|
||||
|
||||
```bash
|
||||
pip install -e .
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
# arXiv IDs or URLs
|
||||
citer arxiv 2106.01342
|
||||
citer arxiv https://arxiv.org/abs/2106.01342
|
||||
|
||||
# DOIs or DOI URLs
|
||||
citer doi 10.1038/nphys1170
|
||||
citer doi https://doi.org/10.1038/nphys1170
|
||||
```
|
||||
|
||||
Errors are printed with a clear message if an ID cannot be parsed or a lookup fails.
|
||||
|
||||
## Tests
|
||||
|
||||
```bash
|
||||
python -m pytest
|
||||
```
|
||||
17
citer.egg-info/SOURCES.txt
Normal file
17
citer.egg-info/SOURCES.txt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
README.md
|
||||
pyproject.toml
|
||||
citer/__init__.py
|
||||
citer/cli.py
|
||||
citer/exceptions.py
|
||||
citer/fetchers.py
|
||||
citer/formatter.py
|
||||
citer/identifiers.py
|
||||
citer/models.py
|
||||
citer.egg-info/PKG-INFO
|
||||
citer.egg-info/SOURCES.txt
|
||||
citer.egg-info/dependency_links.txt
|
||||
citer.egg-info/entry_points.txt
|
||||
citer.egg-info/requires.txt
|
||||
citer.egg-info/top_level.txt
|
||||
tests/test_formatter.py
|
||||
tests/test_identifiers.py
|
||||
1
citer.egg-info/dependency_links.txt
Normal file
1
citer.egg-info/dependency_links.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
2
citer.egg-info/entry_points.txt
Normal file
2
citer.egg-info/entry_points.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[console_scripts]
|
||||
citer = citer.cli:main
|
||||
1
citer.egg-info/requires.txt
Normal file
1
citer.egg-info/requires.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
requests>=2.31.0
|
||||
1
citer.egg-info/top_level.txt
Normal file
1
citer.egg-info/top_level.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
citer
|
||||
Loading…
Add table
Add a link
Reference in a new issue