-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (53 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "substack-cli"
version = "1.2.0"
description = "Publish and manage Substack from the command line, or let your coding agent do it. Markdown in, live newsletter out."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Atharva Shah", email = "hi@atharvashah.com" }]
keywords = [
"substack", "substack-api", "substack-cli", "newsletter", "publishing",
"markdown", "static-site", "blogging", "cms", "content-ops",
"markdown-to-substack", "substack-automation", "cli", "writing",
"agent", "ai-agent", "claude-code", "agents-md", "agentic",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = []
[project.optional-dependencies]
tables = ["Pillow>=9.0"]
dev = ["Pillow>=9.0", "pytest>=7", "ruff>=0.4"]
[project.scripts]
substack = "substack_cli.cli:main"
[project.urls]
Homepage = "https://github.com/HighnessAtharva/substack-cli"
Documentation = "https://github.com/HighnessAtharva/substack-cli#readme"
Source = "https://github.com/HighnessAtharva/substack-cli"
Issues = "https://github.com/HighnessAtharva/substack-cli/issues"
Author = "https://atharvashah.com"
[tool.setuptools.packages.find]
include = ["substack_cli*"]
[tool.setuptools.package-data]
substack_cli = ["data/*.md"]
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501", "B008"]
[tool.pytest.ini_options]
testpaths = ["tests"]