bibdeskparser 0.2.0__tar.gz → 0.2.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.
Files changed (25) hide show
  1. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/PKG-INFO +9 -2
  2. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/README.md +4 -0
  3. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/pyproject.toml +5 -2
  4. bibdeskparser-0.2.1/src/bibdeskparser/cli.py +1868 -0
  5. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/config.py +74 -0
  6. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/entry.py +6 -5
  7. bibdeskparser-0.2.1/src/bibdeskparser/fetch.py +353 -0
  8. bibdeskparser-0.2.1/src/bibdeskparser/importing.py +681 -0
  9. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/library.py +162 -5
  10. bibdeskparser-0.2.0/src/bibdeskparser/cli.py +0 -922
  11. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/__init__.py +0 -0
  12. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/bdskfile.py +0 -0
  13. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/editing.py +0 -0
  14. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/entrytypes.py +0 -0
  15. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/exporting.py +0 -0
  16. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/groups.py +0 -0
  17. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/header.py +0 -0
  18. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/macros.py +0 -0
  19. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/middleware.py +0 -0
  20. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/names.py +0 -0
  21. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/render.py +0 -0
  22. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/search.py +0 -0
  23. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/specifiers.py +0 -0
  24. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/texmap.py +0 -0
  25. {bibdeskparser-0.2.0 → bibdeskparser-0.2.1}/src/bibdeskparser/writer.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bibdeskparser
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Parser for Bibdesk database files
5
5
  Author: Michael Goerz
6
6
  Author-email: Michael Goerz <mail@michaelgoerz.net>
7
7
  License: MIT license
8
- Classifier: Development Status :: 2 - Pre-Alpha
8
+ Classifier: Development Status :: 3 - Alpha
9
9
  Classifier: Intended Audience :: Developers
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Natural Language :: English
@@ -14,8 +14,11 @@ Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Programming Language :: Python :: 3.14
17
+ Requires-Dist: arxiv>=2.1
17
18
  Requires-Dist: bibtexparser==2.0.0b9
18
19
  Requires-Dist: click>=8
20
+ Requires-Dist: habanero>=2.2
21
+ Requires-Dist: httpx>=0.27.2
19
22
  Requires-Dist: tomli>=1.1.0 ; python_full_version < '3.11'
20
23
  Requires-Dist: pyobjc-framework-cocoa ; sys_platform == 'darwin' and extra == 'macos'
21
24
  Requires-Python: >=3.10
@@ -101,6 +104,10 @@ independently of any project, with
101
104
  uv tool install bibdeskparser
102
105
  ```
103
106
 
107
+ > **Tip:** If you use the command-line tool frequently, consider creating a
108
+ > shorter symlink for `bibdeskparser`, e.g. `bib`, so that you can write
109
+ > `bib import 10.22331/q-2022-12-07-871`.
110
+
104
111
 
105
112
  To install the latest development version from [Github][]:
106
113
 
@@ -76,6 +76,10 @@ independently of any project, with
76
76
  uv tool install bibdeskparser
77
77
  ```
78
78
 
79
+ > **Tip:** If you use the command-line tool frequently, consider creating a
80
+ > shorter symlink for `bibdeskparser`, e.g. `bib`, so that you can write
81
+ > `bib import 10.22331/q-2022-12-07-871`.
82
+
79
83
 
80
84
  To install the latest development version from [Github][]:
81
85
 
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "bibdeskparser"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Parser for Bibdesk database files"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -13,7 +13,7 @@ authors = [
13
13
  { name = "Michael Goerz", email = "mail@michaelgoerz.net" },
14
14
  ]
15
15
  classifiers = [
16
- "Development Status :: 2 - Pre-Alpha",
16
+ "Development Status :: 3 - Alpha",
17
17
  "Intended Audience :: Developers",
18
18
  "License :: OSI Approved :: MIT License",
19
19
  "Natural Language :: English",
@@ -24,8 +24,11 @@ classifiers = [
24
24
  "Programming Language :: Python :: 3.14",
25
25
  ]
26
26
  dependencies = [
27
+ "arxiv>=2.1",
27
28
  "bibtexparser==2.0.0b9",
28
29
  "click>=8",
30
+ "habanero>=2.2",
31
+ "httpx>=0.27.2",
29
32
  "tomli>=1.1.0; python_version < '3.11'",
30
33
  ]
31
34