fime/setup.cfg

36 lines
720 B
INI
Raw Permalink Normal View History

2021-11-17 12:36:03 +00:00
[metadata]
name = fime
author = Faerbit
author_email = faerbit@posteo.net
2021-11-18 19:11:23 +00:00
description = Simple time tracking app written with Python and Qt
2021-11-17 12:36:03 +00:00
long_description = file: README.md
long_description_content_type = text/markdown
2021-11-17 19:46:48 +00:00
license = MIT License
2021-11-17 12:36:03 +00:00
url = https://git.faerb.it/faerbit/fime
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
2021-11-17 19:46:48 +00:00
zip_safe = True
2021-11-17 12:36:03 +00:00
package_dir =
= src
packages = find:
2021-11-17 17:43:09 +00:00
python_requires = >=3.8
2021-11-17 12:36:03 +00:00
install_requires =
requests
requests-futures
[options.packages.find]
where = src
2021-11-17 19:46:48 +00:00
[options.extras_require]
qt5 = PySide2
qt6 = PySide6
2021-11-17 12:36:03 +00:00
[options.entry_points]
2021-11-17 16:47:54 +00:00
gui_scripts =
2021-11-17 12:36:03 +00:00
fime = fime.main:main