-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
60 lines (56 loc) · 1.67 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[metadata]
name = tinboard
description = A Pinboard client for the terminal
version = attr: tinboard.__version__
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davep/tinboard
author = Dave Pearson
author_email = [email protected]
maintainer = Dave Pearson
maintainer_email = [email protected]
license = License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
license_files = LICENCE
keywords =
bookmark
pinboard
terminal
classifiers =
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Environment :: Console
Development Status :: 5 - Production/Stable
Intended Audience :: End Users/Desktop
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Education
Topic :: Internet
Topic :: Terminals
Topic :: Utilities
Typing :: Typed
project_urls =
Documentation = https://github.com/davep/tinboard/blob/main/README.md
Source = https://github.com/davep/tinboard
Issues = https://github.com/davep/tinboard/issues
Discussions = https://github.com/davep/tinboard/discussions
[options]
packages = find:
platforms = any
include_package_data = True
install_requires =
textual==0.70.0
xdg-base-dirs>=6.0.0
pytz
humanize>=4.8.0
httpx
pyperclip
python_requires = >=3.10,<3.13
[options.package_data]
tinboard = py.typed
[options.entry_points]
console_scripts =
tinboard = tinboard.__main__:run
### setup.cfg ends here