-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
29 lines (26 loc) · 854 Bytes
/
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
[metadata]
name = find-time
version = 1.0.1
author = Seth Parker
author_email = [email protected]
description = A simple tool for finding regular availability overlaps between event invitees.
long_description = file: README.md
long_description_content_type = text/markdown
download_url = https://github.com/csparker247/find-time
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
License :: OSI Approved :: MIT License
[options]
packages = find:
install_requires = file: requirements.txt
python_requires = >=3.10
[options.packages.find]
include=find_time
[options.entry_points]
console_scripts =
find-time = find_time.main:main
avail-to-ics = find_time.to_ics:main