๐Ÿ“ฆ vinta / fuck-coding-interviews

๐Ÿ“„ pyproject.toml ยท 44 lines
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[tool.poetry]
name = "fuck-coding-interviews"
version = "0.1.0"
description = "How on earth can I ever think of a solution like that in an interview?!"
authors = ["Vinta Chen <vinta.chen@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/vinta/fuck-coding-interviews"
keywords = [
    "Algorithms",
    "Data Structures",
    "Coding Interviews",
]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "Intended Audience :: Education",
    "Intended Audience :: Science/Research",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3.6",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: Implementation",
    "Topic :: Education",
    "Topic :: Software Development",
    "Topic :: Utilities",
]

[tool.poetry.dependencies]
python = "^3.6"

[tool.poetry.dev-dependencies]
binarytree = "==5.1.0"
networkx = "^2.5"
pytest = "==6.1.1"
pytest-benchmark = "==3.2.3"
pytest-cov = "==2.10.1"
pythonds3 = "==3.0.3"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"