-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.cfg
41 lines (37 loc) · 1.14 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
[metadata]
name = togglCli
summary = Command line tool and set of Python wrapper classes for interacting with toggl's API
description_file = README.md
description_content_type = text/markdown
author = D. Robert Adams & Adam Uhlir
author_email = [email protected]
license = MIT
home_page = https://toggl.uhlir.dev
python_requires = >=3.8.0
project_urls =
Source = https://github.com/auhau/toggl-cli
Documentation = https://toggl.uhlir.devg
classifier =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Development Status :: 5 - Production/Stable
Topic :: Office/Business :: Scheduling
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
[files]
packages =
toggl
[entry_points]
console_scripts =
toggl = toggl.toggl:main
[bdist_wheel]
universal = 1
[aliases]
test=pytest