-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (32 loc) · 1.2 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
[build-system]
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"]