File tree Expand file tree Collapse file tree 5 files changed +46
-18
lines changed Expand file tree Collapse file tree 5 files changed +46
-18
lines changed Original file line number Diff line number Diff line change 3
3
dist /
4
4
__pycache__ /
5
5
* .egg-info
6
+ test.py
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ Building
14
14
--------
15
15
Install the latest ` setuptools ` and ` build ` modules, then build the package.
16
16
```
17
- pip install --upgrade setuptools
18
- pip install --upgrade build
17
+ pip install --upgrade setuptools build
19
18
python -m build
20
19
```
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+ # __init__.py -- filetagging initialization.
3
+ # Copyright (C) 2022 Trevor Last
4
+ #
5
+ # This program is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
17
+ """
18
+ Utilities to manage file tags.
19
+ """
20
+
21
+ from .filetagging import (
22
+ main ,
23
+ ls_tags ,
24
+ filter_tags ,
25
+ add_tag ,
26
+ rm_tag ,
27
+ open_tags ,
28
+ TagsFile ,
29
+ __version__
30
+ )
31
+
32
+ __all__ = [
33
+ "main" ,
34
+ "ls_tags" ,
35
+ "filter_tags" ,
36
+ "add_tag" ,
37
+ "rm_tag" ,
38
+ "open_tags" ,
39
+ "TagsFile"
40
+ ]
41
+ __author__ = "Trevor Last"
Original file line number Diff line number Diff line change 14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program. If not, see <https://www.gnu.org/licenses/>.
17
- """
18
- Utilities to manage file tags.
19
- """
20
-
21
- __all__ = [
22
- "main" ,
23
- "ls_tags" ,
24
- "filter_tags" ,
25
- "add_tag" ,
26
- "rm_tag" ,
27
- "open_tags" ,
28
- "TagsFile"
29
- ]
30
- __author__ = "Trevor Last"
17
+
31
18
__version__ = "0.1.0"
32
19
33
20
import json
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = filetagging
3
- version = 0.0.1
3
+ version = attr: filetagging.__version__
4
4
author = Trevor Last
5
5
author_email = trevorclast@gmail.com
6
6
description = Program to manage file tags
7
- long_description = file: README
7
+ long_description = file: README.md
8
8
long_description_content_type = text/markdown
9
9
url = https://github.com/Treecase/file-tagging
10
10
project_urls =
You can’t perform that action at this time.
0 commit comments