Mon, 22 Feb 2016 17:03:44 +0200
Cleaning up moves, and new setup.py
.hgignore | file | annotate | diff | comparison | revisions | |
README.rst | file | annotate | diff | comparison | revisions | |
atmospheric_lidar/setup.py | file | annotate | diff | comparison | revisions | |
setup.py | file | annotate | diff | comparison | revisions |
--- a/.hgignore Mon Feb 22 16:52:52 2016 +0200 +++ b/.hgignore Mon Feb 22 17:03:44 2016 +0200 @@ -4,3 +4,4 @@ *.rst~ re:^readme\.md~$ *.orig +.idea/*
--- a/README.rst Mon Feb 22 16:52:52 2016 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,9 +0,0 @@ -Todo -==== - -* Define features calibration independent -* Sensitivity to resolution -* Sensitivity to wavelength -* Comparison with CloudNet -* Create training dataset -
--- a/atmospheric_lidar/setup.py Mon Feb 22 16:52:52 2016 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -#!/usr/bin/env python - -from setuptools import setup - -# Read the long description from the readmefile -with open("README.rst", "rb") as f: - long_descr = f.read().decode("utf-8") - -# Run setup -setup(name='cloudmask', - packages=['cloudmask', ], - version='0.1.1', - description='Scripts for applying a cloud mask to uncalibrated lidar signals', - long_description = long_descr, - author='Ioannis Binietoglou', - author_email='ioannis@inoe.ro', - install_requires=[ - "numpy", - "matplotlib", - "sphinx", - "scikit-image", - "pytest" - ], - ) -
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon Feb 22 17:03:44 2016 +0200 @@ -0,0 +1,24 @@ +#!/usr/bin/env python + +from setuptools import setup + +# Read the long description from the readmefile +with open("README.md", "rb") as f: + long_descr = f.read().decode("utf-8") + +# Run setup +setup(name='atmospheric_lidar', + packages=['atmospheric_lidar', ], + version='0.1.0', + description='Classes for reading raw atmospheric lidar data.', + long_description = long_descr, + author='Ioannis Binietoglou', + author_email='binietoglou@noa.gr', + install_requires=[ + "numpy", + "matplotlib", + "sphinx", + "pytest" + ], + ) +