-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 842 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
[tool.poetry]
name = "eng_econ"
version = "0.1.3"
description = "This package provides some of the basic functions of engineering economics"
authors = ["Songyu-Wang <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://songyu-wang.github.io/engineering-economics-basics/"
repository = "https://github.com/Songyu-Wang/engineering-economics-basics"
keywords = ["engineering", "economics", "economy", "investments"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
autopep8 = "^1.5.4"
black = "^20.8b1"
isort = "^5.4.2"
coverage = "^5.2.1"
pdoc3 = "^0.9.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"