-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
34 lines (31 loc) · 1.02 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "dev_review"
description = "guide to code review during research"
version = "0.1.0"
authors = [{name = "Research Code Review Community", email = "[email protected]"}]
readme = "README.md"
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
]
[project.optional-dependencies]
docs = [
"myst-parser >=0.17.0",
"Sphinx>=3.4.3",
"sphinxext-opengraph >=0.5.1",
"sphinx-copybutton >=0.4.0",
"sphinx-autobuild >= 2021.3.14",
"sphinx-book-theme>=0.3.2",
"sphinxcontrib-mermaid>=0.7.1",
]
[project.urls]
Home = "https://github.com/ResearchCodeReviewCommunity/dev-review"