forked from wudingcheng/TSAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 795 Bytes
/
setup.py
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
#!/usr/bin/env python
# author: WU Dingcheng
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='TSAnalyzer',
version='2.0.1',
description='Python GNSS Time Series Analysis and Visualization',
license='GPL v3',
author='WU Dingcheng',
author_email='[email protected]',
url='https://github.com/wudingcheng/tsanalyzer',
packages=find_packages(),
package_data={'TSAnalyzer': ['resources/style.qss',
'resources/images/*',
'resources/ui/*.ui']},
install_requires=[
'matplotlib',
'pandas',
'numpy',
'qtpy',
'cvxpy==0.4.11',
'cvxopt'],
entry_points={'gui_scripts': ['TSAnalyzer = TSAnalyzer:main']}
)