forked from nickderobertis/py-finstmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.75 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
[project]
name = "finstmt"
version = "1.2.2"
[tool.setuptools]
py-modules = ['finstmt']
[tool.poetry]
name = "finstmt"
version = "1.4.0"
description = "Contains classes to work with financial statement data. Can calculate free cash flows and help project financial statements."
authors = ["Nick DeRobertis <whoopnip@gmail.com>"]
readme = "README.md"
packages = [{include = "finstmt"}]
license = "MIT"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# List supported python versions
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
include = ["conf.py", "version.py"]
[tool.poetry.urls]
repository = "https://github.com/nickderobertis/py-finstmt"
documentation = "https://nickderobertis.github.io/py-finstmt"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pandas = "*"
sympy = "*"
xlrd = "*"
matplotlib = "*"
tqdm = "*"
statsmodels = "*"
prophet = { version = "*", optional = true }
typing-extensions = ">=4.0.1"
[tool.poetry.extras]
forecast = ["prophet"]
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-cov = "*"
syrupy = "*"
prettyprinter = "*"
[tool.poetry.group.dev.dependencies]
jupyterlab = "*"
[tool.black]
include = 'finstmt.*\.pyi?$|tests.*\.pyi?$'
[tool.isort]
profile = "black"
skip = ['.bzr', '.direnv', '.eggs', '.git', '.hg', '.mypy_cache', '.pants.d', '.svn', '.tox', '.venv', '__pypackages__', '_build', 'buck-out', 'build', 'dist', 'node_modules', '.venvs']