-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (25 loc) · 939 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
[project]
name = "fortune-teller"
version = "1.0.0"
authors = [
{ name="Darren Rahnemoon", email="[email protected]" },
]
license = { file = "LICENSE.txt" }
description = "An AIO framework for creating trading bots and using tensorflow models in trading"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/darrenrahnemoon/fortune-teller"
Issues = "https://github.com/darrenrahnemoon/fortune-teller/issues"
[project.scripts]
fortune-teller = "run:main"