forked from dnvgl/qats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (56 loc) · 1.79 KB
/
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
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
62
# -*- coding: utf-8 -*-
"""
Setup script for building and installing package and building html documentation
"""
from setuptools import setup, find_packages
import os
def read(fname):
"""Utility function to read the README file."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
# package data
name="qats",
use_scm_version=True,
packages=find_packages(exclude=("test",)),
package_data={
"qats.app": ["qats.ico"],
},
python_requires="~=3.6",
setup_requires=["setuptools_scm"],
install_requires=[
"openpyxl>=3,<4",
"numpy>=1,<2",
"scipy>=1,<2",
"matplotlib>=3,<4",
"h5py>=2.7,<3",
"QtPy>=1,<2",
"pandas>=0.24,<1",
"pymatreader>=0.0.20,<1",
"pywin32; platform_system == 'Windows'"
],
entry_points={
"console_scripts": ["qats = qats.cli:main"],
"gui_scripts": ["qats-app = qats.cli:launch_app"]
},
zip_safe=True,
# meta-data
author="Per Voie & Erling Lone",
description="Library for efficient processing and visualization of time series.",
long_description=read('README.md'),
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/dnvgl/qats",
download_url="https://pypi.org/project/qats/",
project_urls={
"Issue Tracker": "https://github.com/dnvgl/qats/issues",
"Documentation": "https://qats.readthedocs.io",
"Changelog": "https://github.com/dnvgl/qats/blob/master/CHANGELOG.md",
},
classifiers=[
'Topic :: Scientific/Engineering',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
]
)