-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 879 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 879 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
depend_packages=[
'PySide6',
'matplotlib',
]
setup(
name='matplotlibqml',
version='0.92.2',
description='Matplotlib Mini QML Backend',
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
install_requires=depend_packages,
author='Cong Zhang',
author_email='congzhangzh@gmail.com',
maintainer='Cong Zhang',
maintainer_email='congzhangzh@gmail.com',
url='https://github.com/medlab/matplotlibqml',
packages=['matplotlibqml'],
package_dir={'':'src'},
package_data={'':['*.qml']},
#data_files=['gadm/test_datas/testdata.h5'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)