forked from josephhardinee/PyDSD
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6325071
Showing
7 changed files
with
470 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
v0.1, Mon March 31 2014 -- Initial Release | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include *.txt | ||
recursive-include docs *.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
], | ||
) | ||
|