-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (39 loc) · 1.29 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
[metadata]
name = feeling-cli
description = A simple feelings recorder and viewer for the terminal, built with Textual
version = attr: feeling.__version__
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davep/feeling
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, library, feelings
classifiers =
License :: OSI Approved :: MIT License
Environment :: Console
Development Status :: 3 - Alpha
Intended Audience :: End Users/Desktop
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
project_urls =
Documentation = https://github.com/davep/feeling/blob/main/README.md
Source = https://github.com/davep/feeling
Issues = https://github.com/davep/feeling/issues
Discussions = https://github.com/davep/feeling/discussions
[options]
packages = find:
platforms = any
include_package_data = True
install_requires =
textual==0.15.1
xdg
python_requires = >=3.10
[options.entry_points]
console_scripts =
feeling = feeling.__main__:main
### setup.cfg ends here