-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.11 KB
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
39
40
41
42
43
44
45
46
47
48
[project]
name = "substack-python"
dynamic = ["version"]
repository = "https://github.com/Aayushshah196/substack-python"
homepage = "https://github.com/Aayushshah196/substack-python"
description = "An unofficial Python Package to interact with Substack."
authors = [
{ name = "Aayushshah196", email = "aayushshah196@gmail.com" }
]
keywords = ["substack", "substack-python", "substack-api", "substack-wrapper", "substack automation"]
license = {text = "MIT License"}
readme = "README.md"
dependencies = [
"beautifulsoup4>=4.12.3",
"markdown>=3.7",
"requests==2.26.0",
"loguru==0.6.0",
"pydantic==2.7.4",
]
[tool.rye]
managed = true
dev-dependencies = [
"pre-commit==2.20.0",
"pyright==1.1.364",
"pytest==7.1.3",
"black==22.10.0",
"pytest-mock>=3.14.0",
"build>=1.2.1",
]
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "code"
path = "src/substack/__init__.py"
search-paths = ["src"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/substack"]