-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (45 loc) · 1.4 KB
/
setup.py
File metadata and controls
66 lines (45 loc) · 1.4 KB
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
63
64
65
66
"""A setuptools based setup module."""
from __future__ import division
from __future__ import absolute_import
from __future__ import print_function
from __future__ import unicode_literals
from setuptools import setup, find_packages
from codecs import open
from os import path
from tecs import version
here = path.abspath(path.dirname(__file__))
print(here)
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tec-suite',
version=version,
description='Reconstruct TEC value in the ionosphere using GNSS-data',
long_description=long_description,
url='https://github.com/gnss-lab/tec-suite',
author='Ilya Zhivetiev',
author_email='i.zhivetiev@gnss-lab.org',
license='GPLv3+',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
('License :: OSI Approved :: GNU General Public License v3 '
'or later (GPLv3+)'),
'Programming Language :: Python :: 3',
],
keywords='ionosphere GNSS TEC',
py_modules=["tecs"],
packages=find_packages(),
install_requires=['future'],
extras_require={
'test': ['coverage', 'nose'],
},
package_data={},
data_files=[],
entry_points={
'console_scripts': [
'tecs = tecs.__main__:run',
]
},
)