Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mec-iS committed Jan 4, 2016
0 parents commit cdab4a4
Show file tree
Hide file tree
Showing 4 changed files with 135 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
Empty file added README.md
Empty file.
3 changes: 3 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# coding=utf-8

__author__ = 'Lorenzo'
59 changes: 59 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="""
"""
)

0 comments on commit cdab4a4

Please sign in to comment.