-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
pyproject.toml
56 lines (52 loc) · 1.49 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
56
[tool.poetry]
name = "PyCap"
version = "2.6.0"
description = "PyCap: Python interface to REDCap"
authors = ["Scott Burns <[email protected]>"]
maintainers = ["Paul Wildenhain <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "http://redcap-tools.github.io/PyCap/"
repository = "https://github.com/redcap-tools/PyCap"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
]
packages = [
{ include = "redcap" }
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.20"
semantic-version = "^2.8.5"
pandas = {version = "^1.3.4", optional = true}
[tool.poetry.extras]
data_science = ["pandas"]
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-black = "^0.3.12"
pytest-mypy = "^0.10.3"
pytest-pylint = "^0.18.0"
responses = "^0.14.0"
pytest-mock = "^3.6.1"
types-requests = "^2.26.1"
pandas-stubs = "^1.2.0"
mkdocs = "^1.2.3"
mkdocs-material = "^8.1.3"
mkdocstrings = "^0.17.0"
pytest-doctestplus = "^0.11.2"
Jinja2 = "~3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"