-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (36 loc) · 1.17 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=68.0.0", "setuptools_scm>=6.3.1"]
[project]
name = "pygenda"
version = "0.3.7"
authors = [
{ name="Matthew Lewis", email="[email protected]" },
]
# license = "GPLv3 only"
description = "An agenda application inspired by Agenda programs on Psion PDAs."
readme = "description.md"
keywords = [ "calendar", "agenda", "todolist", "diary", "pda", "psion", "geminipda", "cosmocommunicator", "linux-mobile" ]
requires-python = ">=3.5"
dependencies = [
"PyGObject",
"python-dateutil",
"icalendar",
"tzlocal!=2.*", # Gemian on GeminiPDA does not work with tzlocal 2.x
"num2words",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Handhelds/PDA's",
"Environment :: X11 Applications :: GTK",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Scheduling",
]
[tool.setuptools]
packages = ["pygenda"]
[tool.setuptools.exclude-package-data]
pygenda = ["mypy.ini", "*.pot", "*.po"]
[tool.setuptools_scm]
[project.urls]
Homepage = "https://github.com/semiprime/pygenda"