From cdab4a469af195d855bfc670dff170dbb222335f Mon Sep 17 00:00:00 2001 From: Lorenzo Date: Tue, 5 Jan 2016 00:59:12 +0100 Subject: [PATCH] Initial commit --- .gitignore | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 0 __init__.py | 3 +++ setup.py | 59 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 135 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 __init__.py create mode 100644 setup.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76be317 --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +.idea/ +lib/ +files/nc4/*.nc4 + +# Created by .ignore support plugin (hsz.mobi) +### Python template +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ + +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + + +### AppEngine template +# Google App Engine generated folder +appengine-generated/ + +# RDFvocab +# six.py +# pyparsing.py +# ordereddict.py +# feedparser.py \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..8689ecc --- /dev/null +++ b/__init__.py @@ -0,0 +1,3 @@ +# coding=utf-8 + +__author__ = 'Lorenzo' diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fa13136 --- /dev/null +++ b/setup.py @@ -0,0 +1,59 @@ +# Copyright 2016 Pramantha, Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from setuptools import setup, find_packages + + +test_requires = [ + +] + +dev_requires = [ + 'numoy', + 'netCDF4' +] + +setup(name='oco2web', + version='0.0.1', + description=u'NASA OCO-2 mission\'s data API', + long_description='An API based on NASA\'s CO2 data', + classifiers=[ + 'Development Status :: 2 - Pre-Alpha', + 'Environment :: Web Service', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Scientific/Engineering', + 'Topic :: Software Development', + ], + keywords='co2 emissions geolocate', + author=u"Lorenzo Moriondo", + author_email='', + url='', + license='Apache 2.0', + packages=find_packages(exclude=['examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + + ], + extras_require={ + 'test': test_requires, + 'dev': test_requires + dev_requires, + }, + entry_points=""" + + """ + )