jodie 0.1.0__tar.gz → 0.1.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 (27) hide show
  1. {jodie-0.1.0 → jodie-0.1.1}/PKG-INFO +8 -1
  2. {jodie-0.1.0 → jodie-0.1.1}/README.md +6 -0
  3. {jodie-0.1.0 → jodie-0.1.1}/jodie/cli/__doc__.py +1 -1
  4. {jodie-0.1.0 → jodie-0.1.1}/jodie/cli/__main__.py +1 -1
  5. {jodie-0.1.0 → jodie-0.1.1}/jodie.egg-info/PKG-INFO +8 -1
  6. {jodie-0.1.0 → jodie-0.1.1}/jodie.egg-info/requires.txt +3 -0
  7. {jodie-0.1.0 → jodie-0.1.1}/pyproject.toml +2 -1
  8. {jodie-0.1.0 → jodie-0.1.1}/jodie/__init__.py +0 -0
  9. {jodie-0.1.0 → jodie-0.1.1}/jodie/cli/__init__.py +0 -0
  10. {jodie-0.1.0 → jodie-0.1.1}/jodie/cli/preview.py +0 -0
  11. {jodie-0.1.0 → jodie-0.1.1}/jodie/config.py +0 -0
  12. {jodie-0.1.0 → jodie-0.1.1}/jodie/constants.py +0 -0
  13. {jodie-0.1.0 → jodie-0.1.1}/jodie/contact/__init__.py +0 -0
  14. {jodie-0.1.0 → jodie-0.1.1}/jodie/contact/contact.py +0 -0
  15. {jodie-0.1.0 → jodie-0.1.1}/jodie/input/__init__.py +0 -0
  16. {jodie-0.1.0 → jodie-0.1.1}/jodie/input/clipboard.py +0 -0
  17. {jodie-0.1.0 → jodie-0.1.1}/jodie/input/signature.py +0 -0
  18. {jodie-0.1.0 → jodie-0.1.1}/jodie/input/stdin.py +0 -0
  19. {jodie-0.1.0 → jodie-0.1.1}/jodie/parsers/__init__.py +0 -0
  20. {jodie-0.1.0 → jodie-0.1.1}/jodie/parsers/base.py +0 -0
  21. {jodie-0.1.0 → jodie-0.1.1}/jodie/parsers/parsers.py +0 -0
  22. {jodie-0.1.0 → jodie-0.1.1}/jodie/parsers/pipeline.py +0 -0
  23. {jodie-0.1.0 → jodie-0.1.1}/jodie.egg-info/SOURCES.txt +0 -0
  24. {jodie-0.1.0 → jodie-0.1.1}/jodie.egg-info/dependency_links.txt +0 -0
  25. {jodie-0.1.0 → jodie-0.1.1}/jodie.egg-info/entry_points.txt +0 -0
  26. {jodie-0.1.0 → jodie-0.1.1}/jodie.egg-info/top_level.txt +0 -0
  27. {jodie-0.1.0 → jodie-0.1.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jodie
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Jodie lets you add contacts to Contacts.app on macOS from command line
5
5
  Author-email: austin <tips@cia.lol>
6
6
  License: MIT
@@ -25,6 +25,7 @@ Description-Content-Type: text/markdown
25
25
  Requires-Dist: docopt~=0.6.2
26
26
  Requires-Dist: nameparser==1.1.3
27
27
  Requires-Dist: tomli>=2.0; python_version < "3.11"
28
+ Requires-Dist: pyobjc-framework-Contacts>=10.0; sys_platform == "darwin"
28
29
  Provides-Extra: dev
29
30
  Requires-Dist: pytest>=7.0; extra == "dev"
30
31
  Requires-Dist: pytest-cov>=4.0; extra == "dev"
@@ -39,6 +40,12 @@ Named for [Jodie Foster](https://en.wikipedia.org/wiki/Jodie_Foster) for her ste
39
40
 
40
41
  ## Installation
41
42
 
43
+ ```bash
44
+ pip install jodie
45
+ ```
46
+
47
+ Or install from source:
48
+
42
49
  ```bash
43
50
  git clone git@github.com:austinogilvie/jodie.git
44
51
  cd jodie
@@ -8,6 +8,12 @@ Named for [Jodie Foster](https://en.wikipedia.org/wiki/Jodie_Foster) for her ste
8
8
 
9
9
  ## Installation
10
10
 
11
+ ```bash
12
+ pip install jodie
13
+ ```
14
+
15
+ Or install from source:
16
+
11
17
  ```bash
12
18
  git clone git@github.com:austinogilvie/jodie.git
13
19
  cd jodie
@@ -48,7 +48,7 @@ Options:
48
48
 
49
49
  """
50
50
 
51
- __version__ = '0.1.0'
51
+ __version__ = '0.1.1'
52
52
  __title__ = "jodie"
53
53
  __license__ = "MIT"
54
54
  __description__ = "Jodie lets you add contacts to Contacts.app on macOS from command line"
@@ -132,7 +132,7 @@ def parse_auto(arguments):
132
132
  if "@" in email:
133
133
  domain = email.split("@")[1].lower()
134
134
  if domain not in WEBMAIL_DOMAINS:
135
- # Extract company name from domain (e.g., "thirdprime.vc" -> "Thirdprime")
135
+ # Extract company name from domain (e.g., "example.org" -> "Thirdprime")
136
136
  company_name = domain.split(".")[0].title()
137
137
  detected_fields["company"] = company_name
138
138
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jodie
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Jodie lets you add contacts to Contacts.app on macOS from command line
5
5
  Author-email: austin <tips@cia.lol>
6
6
  License: MIT
@@ -25,6 +25,7 @@ Description-Content-Type: text/markdown
25
25
  Requires-Dist: docopt~=0.6.2
26
26
  Requires-Dist: nameparser==1.1.3
27
27
  Requires-Dist: tomli>=2.0; python_version < "3.11"
28
+ Requires-Dist: pyobjc-framework-Contacts>=10.0; sys_platform == "darwin"
28
29
  Provides-Extra: dev
29
30
  Requires-Dist: pytest>=7.0; extra == "dev"
30
31
  Requires-Dist: pytest-cov>=4.0; extra == "dev"
@@ -39,6 +40,12 @@ Named for [Jodie Foster](https://en.wikipedia.org/wiki/Jodie_Foster) for her ste
39
40
 
40
41
  ## Installation
41
42
 
43
+ ```bash
44
+ pip install jodie
45
+ ```
46
+
47
+ Or install from source:
48
+
42
49
  ```bash
43
50
  git clone git@github.com:austinogilvie/jodie.git
44
51
  cd jodie
@@ -4,6 +4,9 @@ nameparser==1.1.3
4
4
  [:python_version < "3.11"]
5
5
  tomli>=2.0
6
6
 
7
+ [:sys_platform == "darwin"]
8
+ pyobjc-framework-Contacts>=10.0
9
+
7
10
  [dev]
8
11
  pytest>=7.0
9
12
  pytest-cov>=4.0
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  name = "jodie"
7
7
  license = {text = "MIT"}
8
- version = "0.1.0"
8
+ version = "0.1.1"
9
9
  description = "Jodie lets you add contacts to Contacts.app on macOS from command line"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.9"
@@ -29,6 +29,7 @@ dependencies = [
29
29
  "docopt~=0.6.2",
30
30
  "nameparser==1.1.3",
31
31
  "tomli>=2.0; python_version < '3.11'",
32
+ "pyobjc-framework-Contacts>=10.0; sys_platform == 'darwin'",
32
33
  ]
33
34
 
34
35
  [project.optional-dependencies]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes