-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (33 loc) · 869 Bytes
/
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
[tool.poetry]
name = "algorithm-python"
version = "0.0.1"
description = "the road to algorithm of python"
license = "MIT"
authors = [
"HerryZhang",
"Micheal Gardner <[email protected]>",
]
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/herryzhang/algorithm-python"
homepage = "https://github.com/herryzhang/algorithm-python"
keywords = ['packaging', 'poetry']
[[tool.poetry.source]]
name = "douban"
url = 'https://pypi.douban.com/simple/'
[tool.poetry.dependencies]
python = "^3.2" # Compatible python versions must be declared here
ipython = "*"
ipdb = "*"
sphinx = "^1.8"
sphinx_rtd_theme = "^0.4.2"
sphinx-autobuild = "^0.7.1"
[tool.poetry.dev-dependencies]
autoflake = "*"
coverage = "*"
"flake8" = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-html = "*"
pytest-sugar = "*"
pytest-rerunfailures = "*"