-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.46 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
[project]
name = "investorzilla"
version = '4.4'
description = "Manage your investments like a data scientist"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Avi Alkalay", email = "[email protected]" },
]
keywords = [
"investments",
]
dependencies = [
"pandas>=2",
"pandas_datareader",
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib",
"sqlalchemy",
"matplotlib",
"certifi",
"pyaml",
"streamlit",
]
# dynamic = [
# "version",
# ]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
]
[tool.setuptools.package-data]
"investorzilla.portfolios" = ["app-credentials-for-google-sheets.json"]
[project.scripts]
investorzilla = "investorzilla.__main__:main"
[project.urls]
Homepage = "https://github.com/avibrazil/investorzilla"
Source = "https://github.com/avibrazil/investorzilla"
Issues = "https://github.com/avibrazil/investorzilla/issues/new/choose"
Pypi = "https://pypi.org/project/investorzilla"
[project.optional-dependencies]
docs = [
"streamlit",
]
[tool.setuptools.package-dir]
investorzilla = "investorzilla"