-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (42 loc) · 1.24 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
"""
GNSSVOD setup file based on
gnssvod setup file by
Mustafa Serkan ISIK and Volkan Ozbey
"""
from setuptools import setup
import re
def get_property(prop, project):
result = re.search(r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop), open(project + '/__init__.py').read())
return result.group(1)
setup(
name = 'gnssvod',
packages = ["gnssvod",
"gnssvod.io",
"gnssvod.position",
"gnssvod.funcs",
"gnssvod.geodesy",
"gnssvod.doc",
"gnssvod.hemistats",
"gnssvod.analysis"],
install_requires=[
"pandas",
"numpy",
"matplotlib",
"pyunpack",
"hatanaka",
"tqdm",
"xarray"
],
include_package_data = True,
package_data = {"gnssvod.doc": ["IGSList.txt"]},
data_files = [("", ["LICENSE"])],
version = get_property('__version__', 'gnssvod'),
description = 'Python Toolkit for GNSS Data',
author = get_property('__author__', 'gnssvod'),
author_email = '[email protected]',
license = 'MIT',
url = 'https://github.com/gnssvod-Project/gnssvod',
download_url = 'https://github.com/gnssvod-Project/gnssvod/archive/0.1.tar.gz',
classifiers = [],
zip_safe=False
)