-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup. Changed to use setuptools & pyproject.toml. No longer tries to…
… build C library, but that means it doesn't need a C toolchain, and behaviour without the C library is now reasonable in most cases.
- Loading branch information
Showing
6 changed files
with
94 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Pygenda is a calendar/agenda application written in Python3/GTK3. The UI is inspired by the Agenda programs on the Psion Series 3 and Series 5 range of keyboard PDAs, with the aim of being suitable for devices such as Planet Computers' Gemini (running Linux). | ||
|
||
For more information/latest source, see https://github.com/semiprime/pygenda |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[build-system] | ||
requires = ["setuptools>=57.5", "setuptools_scm>=6.3"] | ||
|
||
|
||
[project] | ||
name = "pygenda" | ||
version = "0.3.3-dev0" | ||
authors = [ | ||
{ name="Matthew Lewis", email="pygenda@semiprime.com" }, | ||
] | ||
# 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", "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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters