-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.3 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
[project]
name = "jquants-algo"
version = "0.1.1"
description = "jquants-algo is a python library for algorithmic trading with japanese stock trade using J-Quants on Python 3.8 and above."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["algorithmic trading", "python", "japanese stock", "trade", "J-Quants", "jquants"]
authors = [
{name = "10mohi6", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"jquants-api-client",
"matplotlib",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-mock",
]
[project.urls]
Homepage = "https://github.com/10mohi6/jquants-algo-python"
Documentation = "https://github.com/10mohi6/jquants-algo-python"
Repository = "https://github.com/10mohi6/jquants-algo-python.git"