-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
49 lines (46 loc) · 1.43 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
[metadata]
name = oshit
description = A terminal-based HackerNews reader
version = attr: oshit.__version__
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davep/oshit
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 = terminal
classifiers =
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Environment :: Console
Development Status :: 4 - Beta
Intended Audience :: End Users/Desktop
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet
Topic :: Terminals
Typing :: Typed
project_urls =
Documentation = https://github.com/davep/oshit/blob/main/README.md
Source = https://github.com/davep/oshit
Issues = https://github.com/davep/oshit/issues
Discussions = https://github.com/davep/oshit/discussions
[options]
packages = find:
platforms = any
include_package_data = True
python_requires = >=3.10,<3.13
install_requires =
textual==0.70.0
humanize>=4.8.0
xdg-base-dirs>=6.0.0
httpx
[options.entry_points]
console_scripts =
oshit = oshit.__main__:run
### setup.cfg ends here