-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (54 loc) · 1.17 KB
/
setup.cfg
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
[metadata]
name = canswim
version = 0.0.15
author = Ivelin Ivanov
author_email = [email protected]
description = "Developer toolkit for CANSLIM investment style practitioners"
long_description = file: README.md
keywords = stock market, analytics
license = Apache-2.0
classifiers =
# Framework :: Django
Programming Language :: Python :: 3
project_urls =
# Documentation = https://setuptools.pypa.io/
# Changelog = https://setuptools.pypa.io/en/stable/history.html
[options]
zip_safe = False
include_package_data = True
package_dir=
=src
packages = find:
python_requires = >=3.10
install_requires =
darts==0.27.2
yfinance
fmpsdk
optuna==3.4.0
huggingface_hub
gradio
loguru
duckdb
# hvplot
# requests
# importlib-metadata; python_version<"3.8"
pytest
pytest-cov
[options.package_data]
* = *.txt, *.rst, *.md
# hello = *.msg
[options.entry_points]
# console_scripts =
# executable-name = my_package.module:function
[options.extras_require]
# pdf = ReportLab>=1.2; RXP
# rest = docutils>=0.3; pack ==1.1, ==1.3
[options.packages.find]
where=src
exclude =
examples*
tools*
docs*
data*
canswim.tests*
tests*