Skip to content

Commit fcd3d2e

Browse files
committed
Updated setup.py
1 parent 273b68d commit fcd3d2e

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,12 +464,14 @@ Metadata is refreshed from disk every time a class property is accessed.
464464
This will only work on file systems that support Mac OS X extended attributes.
465465

466466
## Dependencies
467+
[bitstring](https://pypi.org/project/bitstring/)
468+
469+
[Click](https://palletsprojects.com/p/click/)
470+
467471
[PyObjC](https://pythonhosted.org/pyobjc/)
468472

469473
[xattr](https://github.com/xattr/xattr)
470474

471-
[Click](https://palletsprojects.com/p/click/)
472-
473475
## Related Projects
474476

475477
- [tag](https://github.com/jdberry/tag) A command line tool to manipulate tags on Mac OS X files, and to query for files with those tags.

osxmetadata/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.99.0"
1+
__version__ = "0.99.1"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appdirs==1.4.3
33
astroid==2.2.0
44
attrs==19.3.0
55
better-exceptions-fork==0.2.1.post6
6-
black==19.10b0
6+
bitstring==3.1.6
77
certifi==2019.11.28
88
cffi==1.12.2
99
Click==7.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"Programming Language :: Python :: 3.7",
4848
"Topic :: Software Development :: Libraries :: Python Modules",
4949
],
50-
install_requires=["xattr", "pyobjc>=6.0.1", "click>=7.0"],
50+
install_requires=["xattr", "pyobjc>=6.0.1", "click>=7.0", "bitstring"],
5151
python_requires=">=3.7",
5252
entry_points={"console_scripts": ["osxmetadata=osxmetadata.__main__:cli"]},
5353
)

0 commit comments

Comments
 (0)