gges 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
gges-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.1
2
+ Name: gges
3
+ Version: 0.0.1
4
+ Summary: Geography and Environmental Science
5
+ Home-page: https://github.com/songyanzhu/gges
6
+ Author: Songyan Zhu
7
+ Author-email: Songyan.Zhu@soton.ac.uk
8
+ License: MIT Licence
9
+ Keywords: geography,env science
10
+ Platform: any
11
+ Requires-Dist: geetools
12
+
13
+ Read/write and process rs/gis related data, especially atmospheric rs data.
gges-0.0.1/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # gges
2
+
@@ -0,0 +1,4 @@
1
+ import ee
2
+ from . import geeface
3
+
4
+ __all__ = ["ee", "geeface"]
@@ -0,0 +1,3 @@
1
+ import numpy as np
2
+
3
+ print(np.arange(10))
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.1
2
+ Name: gges
3
+ Version: 0.0.1
4
+ Summary: Geography and Environmental Science
5
+ Home-page: https://github.com/songyanzhu/gges
6
+ Author: Songyan Zhu
7
+ Author-email: Songyan.Zhu@soton.ac.uk
8
+ License: MIT Licence
9
+ Keywords: geography,env science
10
+ Platform: any
11
+ Requires-Dist: geetools
12
+
13
+ Read/write and process rs/gis related data, especially atmospheric rs data.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ gges/__init__.py
4
+ gges/func.py
5
+ gges.egg-info/PKG-INFO
6
+ gges.egg-info/SOURCES.txt
7
+ gges.egg-info/dependency_links.txt
8
+ gges.egg-info/requires.txt
9
+ gges.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ geetools
@@ -0,0 +1 @@
1
+ gges
gges-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
gges-0.0.1/setup.py ADDED
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env python
2
+ #-*- coding:utf-8 -*-
3
+
4
+ #############################################
5
+ # File Name: setup.py
6
+ # Author: Songyan Zhu
7
+ # Mail: songyan.zhu@soton.ac.uk
8
+ # Created Time: 2018-10-23 13:28:34
9
+ #############################################
10
+
11
+
12
+ from setuptools import setup, find_packages
13
+
14
+ setup(
15
+ name = "gges",
16
+ version = "0.0.1",
17
+ keywords = ("geography", "env science"),
18
+ description = "Geography and Environmental Science",
19
+ long_description = "Read/write and process rs/gis related data, especially atmospheric rs data.",
20
+ license = "MIT Licence",
21
+
22
+ url="https://github.com/songyanzhu/gges",
23
+ author = "Songyan Zhu",
24
+ author_email = "Songyan.Zhu@soton.ac.uk",
25
+
26
+ packages = find_packages(),
27
+ include_package_data = True,
28
+ platforms = "any",
29
+ install_requires=[
30
+ # "geopandas==0.4.1",
31
+ # "scipy==1.2.1",
32
+ # "GDAL==2.3.3",
33
+ # "pyproj==1.9.6",
34
+ # "Shapely==1.6.4.post1",
35
+ # "rasterio==1.0.21",
36
+ # "numpy==1.16.0",
37
+ # "geopandas",
38
+ # "rasterio"
39
+ # "pygal",
40
+ "geetools"
41
+
42
+ ]
43
+ )