-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
44 lines (40 loc) · 1.03 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[metadata]
name = hatanaka
version = 2.8.1
author = Martin Valgur
author_email = [email protected]
url = https://github.com/valgur/hatanaka
description = Effortlessly compress / decompress any RINEX file
long_description = file: README.md
long_description_content_type = text/markdown
license_files = LICENSE
keywords =
RINEX
Hatanaka compression
GNSS
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Environment :: Console
Topic :: Scientific/Engineering
[options]
python_requires = >= 3.6
include_package_data = True
zip_safe = False
packages = find:
install_requires =
importlib_resources
ncompress
[options.extras_require]
tests = pytest
dev = pytest
[options.package_data]
hatanaka.bin = *
hatanaka.test.data = *
[options.entry_points]
console_scripts =
rinex-decompress = hatanaka.cli:decompress_cli
rinex-compress = hatanaka.cli:compress_cli
rnx2crx = hatanaka.cli:rnx2crx
crx2rnx = hatanaka.cli:crx2rnx