jodie 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
jodie/cli/__doc__.py CHANGED
@@ -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"
jodie/cli/__main__.py CHANGED
@@ -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
@@ -1,9 +1,9 @@
1
1
  jodie/__init__.py,sha256=1Vbq4yQV90EfB4FcNtTl2Vry0RfIaOyZdIJX787NE3k,156
2
2
  jodie/config.py,sha256=cxDwhFKXAsXztQcIN11re1LPMA-SDd6L6zS793HXTys,3050
3
3
  jodie/constants.py,sha256=FGgE65ArdA9Sjk2tTin5hI5rhr3iRHCmUHY4cXFnPLY,888
4
- jodie/cli/__doc__.py,sha256=xq5E6cA6cI75SFdFPmy64ioDy_x9AbSOTfEWU6mCZMY,3099
4
+ jodie/cli/__doc__.py,sha256=rRfgxbbSG5bbnHbuigcVaynTHsc9cJ6Xe1VJMU0qwfw,3099
5
5
  jodie/cli/__init__.py,sha256=NmIjHZJf4m9jlcUDVmXP2IWMUDSfkJEt0Ba73a53oQE,47
6
- jodie/cli/__main__.py,sha256=mF28Rt2xnU2HrMqc89eg1Ro1A-enHfrs2GlkirdHQW8,11709
6
+ jodie/cli/__main__.py,sha256=B-OrMEEDwrqDLu_c3auZn1le3r81c_wMVZHpUz4DUe0,11707
7
7
  jodie/cli/preview.py,sha256=diuYvioNvQce_OQqqFEl4pxJrQTxYfTRfGA5n7A6w6U,2378
8
8
  jodie/contact/__init__.py,sha256=fvYMNKjRR081QW7glEqx-2xPhJVKQ4DKVDcVhBKoZ5U,118
9
9
  jodie/contact/contact.py,sha256=6TaXBIyeZNsjzhN1Q1Tt6KSVAzbj5XEWVX5-GIGYj6c,24572
@@ -15,8 +15,8 @@ jodie/parsers/__init__.py,sha256=aBvotR0pnVD8u6byrKSyODRQv_zyN3VKgL2va1TnfOI,452
15
15
  jodie/parsers/base.py,sha256=uJVXMMDB9bWBBS6-L6TJvz1hsQ2uv0fNpRsszOhRDrw,1880
16
16
  jodie/parsers/parsers.py,sha256=scMNKwT4R7s0KFe_LbKH6nxCS3m4fTXbxT9iKr3lhEk,8660
17
17
  jodie/parsers/pipeline.py,sha256=RcIstg4qKV03DgVKlwtM0S6JZKs1u3f-TRA_qmZlyR8,4468
18
- jodie-0.1.0.dist-info/METADATA,sha256=QrFFosM0Opd-a1gGzBTQivbOkF5ISCylYkkgRqZ3NCE,6782
19
- jodie-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
20
- jodie-0.1.0.dist-info/entry_points.txt,sha256=gcALVZny5Rf9XkvJHgzT_XgM8Rfv02TsI2Czj0LYVA8,86
21
- jodie-0.1.0.dist-info/top_level.txt,sha256=mGpLxKAloOMxcCxDh6it4IITdOFBPeyq-kaEhzjlJxA,6
22
- jodie-0.1.0.dist-info/RECORD,,
18
+ jodie-0.1.1.dist-info/METADATA,sha256=aAStWXc5mKRSUhL-bbN3yaIxX6QpvffmW0CAZNEc2nw,6911
19
+ jodie-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
20
+ jodie-0.1.1.dist-info/entry_points.txt,sha256=gcALVZny5Rf9XkvJHgzT_XgM8Rfv02TsI2Czj0LYVA8,86
21
+ jodie-0.1.1.dist-info/top_level.txt,sha256=mGpLxKAloOMxcCxDh6it4IITdOFBPeyq-kaEhzjlJxA,6
22
+ jodie-0.1.1.dist-info/RECORD,,
File without changes