FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
finplot/setup.py at master · TinkerForFun/finplot · GitHub
TinkerForFun
/
finplot
Public
forked from
highfestiva/finplot
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
finplot
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (22 loc) · 772 Bytes
Breadcrumbs
finplot
/
setup.py
Copy path
File metadata and controls
24 lines (22 loc) · 772 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
import
setuptools
from
finplot
.
_version
import
__version__
with
open
(
'README.md'
,
'r'
)
as
fh
:
long_description
=
fh
.
read
()
setuptools
.
setup
(
name
=
'finplot'
,
version
=
__version__
,
author
=
'Jonas Byström'
,
author_email
=
'highfestiva@gmail.com'
,
description
=
'Finance plotting'
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
url
=
'https://github.com/highfestiva/finplot'
,
packages
=
[
'finplot'
],
install_requires
=
[
'numpy>=1.23.5'
,
'pandas>=1.5.2'
,
'PyQt6>=6.4.0'
,
'pyqtgraph>=0.13.1'
,
'python-dateutil'
],
classifiers
=
[
'Programming Language :: Python :: 3'
,
'License :: OSI Approved :: MIT License'
,
'Operating System :: OS Independent'
,
],
)
Back
|
FazBrowse Home
|
New Git URL