-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 1.26 KB
/
setup.py
File metadata and controls
26 lines (25 loc) · 1.26 KB
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
from setuptools import setup, find_packages
setup(
name='pyside-db-chart-mapping-example',
version='0.0.38',
author='Jung Gyu Yoon',
author_email='yjg30737@gmail.com',
license='MIT',
packages=find_packages(),
package_data={'pyside_db_chart_mapping_example.ico': ['search.svg'],
'pyside_db_chart_mapping_example.style': ['lineedit.css', 'search_bar.css', 'widget.css',
'black_overlay.css',
'black_ring_of_color_selector.css',
'color_selector.css',
'hue_bg.css',
'hue_frame.css',
'hue_selector.css']},
description='PySide6 example of mapping database table(QSqlTableModel based table view) and chart with QVBarModelMapper',
url='https://github.com/yjg30737/pyside-db-chart-mapping-example.git',
install_requires=[
'PySide6',
'xlsxwriter',
'pandas',
'openpyxl'
]
)