Skip to content

Commit 3ab24d0

Browse files
committed
Fixes for setup.py and pyptoject.toml to work properly
1 parent 1d3843f commit 3ab24d0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ Acknowledgements
8585
================
8686

8787
- [Two steps to turn a Python file to a macOS installer](https://gist.github.com/Kvnbbg/84871ae4d642c2dd896e0423471b1b52) helped me quickly understand how to build a DMG using `create-dmg`.
88+
- [Understanding setup.py, setup.cfg and pyproject.toml in Python](https://ianhopkinson.org.uk/2022/02/understanding-setup-py-setup-cfg-and-pyproject-toml-in-python/)
8889
- [create-dmg](https://github.com/create-dmg/create-dmg): A shell script to build fancy DMGs (macOs app installer)
8990
- [rumps](https://github.com/jaredks/rumps): Ridiculously uncomplicated macOS Python statusbar apps
9091
- [py2app](https://github.com/ronaldoussoren/py2app): a Python setuptools command which will allow you to make standalone Mac OS X application bundles.

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "merge-requests-monitor"
6+
name = "MergeRequestsMonitor"
77
dynamic = ["version"]
88
description = "A System Tray app for Mac OSX that monitors your open merge requests and let you access them quickly. So far it only supports Gitlab's pull requests."
99
readme = "README.md"
10-
license = "GPL-3.0"
1110
authors = [
1211
{ name = "Agustin Mendez", email = "matagus@gmail.com" },
1312
]

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
}
1717

1818
REQ_LIST = [
19-
"feedparser>=6.0.0",
20-
"py2app>=0.28.0",
19+
"feedparser==6.0.10",
20+
"py2app>=0.28.6",
2121
"rumps>=0.4.0",
2222
]
2323

0 commit comments

Comments
 (0)