-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Another day, another change to Slack. New leveldb location found using "lsof". Also requires an update to pycookiecheat because the keyring name has also changed. See n8henrie/pycookiecheat#69. All the docs for updating a PyPI package have changed since the last update, so also took the opportunity to get up to speed. It was awful, but seems to be working now. Basically setup.cfg is superseded and now everything goes in pyproject.toml.
- Loading branch information
Showing
4 changed files
with
37 additions
and
35 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,38 @@ | ||
[build-system] | ||
requires = ["setuptools>=42"] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "slacktokens" | ||
version = "0.2.4" | ||
|
||
dependencies = [ | ||
"leveldb==0.201", | ||
"pycookiecheat", | ||
] | ||
# Python 3.12 deprecates "PyUnicode_AS_UNICODE", which python-leveldb relies on. I | ||
# haven't found a workaround, so just still with 3.11 for now. I've read "Should You | ||
# Use Upper Bound Version Contraints" and there seems to be a thick cultural barrier | ||
# to me understanding all the stated reasons not to to do this. So I'm doing it. | ||
requires-python = ">=3.7, <3.12" | ||
|
||
authors = [ {name = "Heath Raftery", email = "[email protected]" } ] | ||
description = "Extract personal tokens and authentication cookie from the Slack app" | ||
readme = "README.md" | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Utilities", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/hraftery/slacktokens" | ||
|
||
[tool.setuptools] | ||
py-modules = ["slacktokens"] |
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