forked from ibaris/gscpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (45 loc) · 1.66 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
63
64
65
66
67
68
# -*- coding: UTF-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages
def get_packages():
find_packages(exclude=['docs', 'tests']),
return find_packages()
def get_version():
version = dict()
with open("gscpy/__version__.py") as fp:
exec (fp.read(), version)
return version['__version__']
setup(name='gscpy',
version=get_version(),
description='Sentinel-1 SAR space-time cube with radar pre-processing in GRASS',
packages=get_packages(),
author="Ismail Baris, Nils von Norsinski",
maintainer='Ismail Baris',
# ~ license='APACHE 2',
url='https://github.com/ibaris/gscpy',
long_description='Sentinel-1 SAR space-time cube with radar pre-processing in GRASS',
# install_requires=install_requires,
keywords=["radar", "remote-sensing", "optics", "integration",
"microwave", "estimation", "physics", "radiative transfer"],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Atmospheric Science',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: Microsoft',
],
# package_data={"": ["*.txt"]},
include_package_data=True,
install_requires=['numpy', 'scipy'],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
)