-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.cfg
28 lines (26 loc) · 885 Bytes
/
setup.cfg
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
[metadata]
name = iqtools
version = attr: iqtools.version.__version__
author = xaratustrah
url = https://github.com/xaratustrah/iqtools
description = Collection of tools for dealing with in phase / quadrature time series data.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = Physics, Data, Time series, Data analysis
license = GPLv3
license_files = LICENSE
classifiers =
Environment :: Console
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Topic :: Scientific/Engineering :: Physics
Intended Audience :: Science/Research
[options]
python_requires = >=3.7, <4
packages = find:
[options.entry_points]
console_scripts =
iqtools = iqtools.__main__:main
iqgui = iqgui.__main__:main