We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ae099 commit 191b713Copy full SHA for 191b713
3 files changed
pyproject.toml
@@ -0,0 +1,28 @@
1
+[tool.poetry]
2
+name = "python-substack"
3
+version = "0.0.1"
4
+description = "A Python wrapper around the Substack API."
5
+authors = ["Paolo Mazza <mazzapaolo2019@gmail.com>"]
6
+license = "MIT"
7
+packages = [
8
+ { include = "substack" }
9
+]
10
+
11
+readme = "README.md"
12
13
+repository = "https://github.com/hogier/python-substack"
14
+homepage = "https://github.com/hogier/python-substack"
15
16
+keywords = ["substack"]
17
18
+[tool.poetry.dependencies]
19
+python = "^3.8"
20
+python-dotenv = "^0.20.0"
21
+requests = "^2.28.1"
22
23
+[tool.poetry.dev-dependencies]
24
25
26
+[build-system]
27
+requires = ["poetry-core>=1.0.0"]
28
+build-backend = "poetry.core.masonry.api"
requirements.txt
setup.py
0 commit comments