-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.45 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]
name = "bc-utils"
version = "0.1.7"
description = "Python utility automation scripts for Barchart.com"
authors = ["Andy Geach <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/bug-or-feature/bc-utils"
repository = "https://github.com/bug-or-feature/bc-utils"
keywords = ["trading"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
]
packages = [
{ include = "bcutils" }
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
requests = "^2"
numpy = "<2"
pandas = "<3"
beautifulsoup4 = "^4"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
pytest = "^7"
flake8 = "^6"
[tool.poetry.urls]
"Issues" = "https://github.com/bug-or-feature/bc-utils/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310']
required-version = '23.12.1'