generated from catalyst-cooperative/cheshire
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.79 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>69", "wheel"]
[project]
name = "catalystcoop.handbook"
description="The Catalyst Cooperative Member Handbook"
readme = { file = "README.md", "content-type" = "text/markdown" }
authors = [{ name = "Catalyst Cooperative", email = "[email protected]" }]
requires-python = ">=3.12,<3.13"
license = { file = "LICENSE.txt" }
version = "v2024.4.0"
dependencies = [
"doc8>=1,<2", # Ensures clean documentation formatting
"furo>=2024.1.29,<2025",
"mdformat>=0.7.17,<1",
"mdformat-myst>=0.1.5,<1",
"myst-parser>=1,<5",
"pre-commit>=4,<5", # Allow us to run pre-commit hooks in testing
"pydocstyle>=6,<7", # Style guidelines for Python documentation
"sphinx>6,<9", # The default Python documentation engine
"sphinx-autoapi>=3,<4", # Generates documentation from docstrings
"sphinx-issues>=4,<6", # Allows references to GitHub issues
"tox>=4,<5", # Python test environment manager
]
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
]
keywords=[
"cooperative",
"bylaws",
"articles of incorporation",
"handbook",
"policy",
"governance",
]
[project.urls]
"Source" = "https://github.com/catalyst-cooperative/handbook"
"Documentation" = "https://catalystcoop-handbook.readthedocs.io"
"Issue Tracker" = "https://github.com/catalyst-cooperative/handbook/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]