-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
76 lines (58 loc) · 1.88 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "easydev"
version = "0.13.3"
description = "Common utilities to ease development of Python packages"
authors = [
{ "name" = "Thomas Cokelaer", "email" = "thomas.cokelaer@pasteur.fr" },
]
license = "BSD-3-Clause"
readme = "README.rst"
keywords = ["config", "decorators", "development"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
packages = [
{ include = "easydev"},
{ include = "easydev/share"},
]
[project.urls]
Homepage = "https://easydev.readthedocs.io"
Repository = "/~https://github.com/cokelaer/easydev"
Issues = "/~https://github.com/cokelaer/easydev/issues"
Documentation = "https://easydev.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.8"
colorama = "^0.4.6"
colorlog = "^6.8.2"
pexpect = "^4.9.0"
platformdirs = "^4.2.0"
line-profiler = "^4.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pytest-mock = "^3.12.0"
pytest-timeout = "^2.2.0"
pytest-runner = "^6.0.1"
coveralls = "^3.3.1"
flaky = "^3.7.0"
[tool.poetry.group.doc.dependencies]
sphinx = ">3"
sphinx-rtd-theme = "^2.0.0"
sphinx-gallery = "^0.15.0"