Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
josephhardinee committed Mar 31, 2014
0 parents commit 6325071
Show file tree
Hide file tree
Showing 7 changed files with 470 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Change.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
v0.1, Mon March 31 2014 -- Initial Release

435 changes: 435 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
Change.txt
LICENSE.txt
README.txt
setup.py
pydisdrometer/__init__.py
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include *.txt
recursive-include docs *.txt

7 changes: 7 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
============
PyDisdrometer
============

PyDisdrometer is a package to process disdrometer files. It currently supports parsivel disdrometers.

Author: Joseph C. Hardin
Empty file added pydisdrometer/__init__.py
Empty file.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from distutils.core import setup

setup(
name='PyDisdrometer',
version='0.1.0',
author='Joseph C. Hardin',
author_email='[email protected]',
packages=['pydisdrometer'],
url='http://pypi.python.org/pypi/PyDisdrometer/',
licenese='LICENSE.txt',
description='Pyton Disdrometer Processing',
long_description=open('README.txt').read(),
install_requires=[
"pytmatrix >=0.2.0"
],
)

0 comments on commit 6325071

Please sign in to comment.