forked from EmilMaric/cad-capital-gains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.17 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
[tool.poetry]
# Store the file as 'cad-capgains' on PyPi, but have the CLI command be named
# 'capgains'
name = "cad-capgains"
version = "2.0.1"
description = "A CLI tool to calculate your capital gains"
license = "MIT"
readme = "README.md"
maintainers = [
"Eddy Maric",
"Emil Maric"
]
authors = [
"Eddy Maric",
"Emil Maric"
]
packages = [
{ include = "capgains" },
]
homepage = "https://github.com/EmilMaric/cad-capital-gains"
repository = "https://github.com/EmilMaric/cad-capital-gains"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Accounting",
]
keywords = [
'capital',
'gains',
'canadian',
'tax'
]
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.1.2"
tabulate = "^0.8.7"
requests = "^2.23.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
tox = "^3.15.0"
requests-mock = "^1.8.0"
flake8 = "^3.8.3"
pytest-cov = "^2.10.1"
[tool.poetry.scripts]
capgains = "capgains.cli:capgains"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"