# HG changeset patch # User Ioannis # Date 1456153424 -7200 # Node ID 7c76fdbdf1a3ff693ed88247575dbff94d9f0cbd # Parent a281a26f46263a4268122d6a83f102f82730421c Cleaning up moves, and new setup.py diff -r a281a26f4626 -r 7c76fdbdf1a3 .hgignore --- 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/* diff -r a281a26f4626 -r 7c76fdbdf1a3 README.rst --- 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 - diff -r a281a26f4626 -r 7c76fdbdf1a3 atmospheric_lidar/setup.py --- 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" - ], - ) - diff -r a281a26f4626 -r 7c76fdbdf1a3 setup.py --- /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" + ], + ) +