Thu, 16 Feb 2017 10:27:30 +0200
Merge from 51:29cfdff59777
devnull@34 | 1 | #!/usr/bin/env python |
devnull@34 | 2 | |
devnull@34 | 3 | from setuptools import setup |
devnull@34 | 4 | |
ioannis@50 | 5 | # Read the long description from the readmef ile |
binietoglou@39 | 6 | with open("readme.rst", "rb") as f: |
devnull@34 | 7 | long_descr = f.read().decode("utf-8") |
devnull@34 | 8 | |
devnull@34 | 9 | # Run setup |
ioannis@50 | 10 | setup(name='atmospheric_lidar_reader', |
ioannis@50 | 11 | packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'], |
ioannis@50 | 12 | version='0.2.0', |
devnull@37 | 13 | description='Classes for reading raw atmospheric lidar data.', |
ioannis@50 | 14 | long_description=long_descr, |
devnull@34 | 15 | author='Ioannis Binietoglou', |
ioannis@50 | 16 | author_email='ioannis@inoe.ro', |
devnull@34 | 17 | install_requires=[ |
ioannis@50 | 18 | "numpy", |
ioannis@50 | 19 | "matplotlib", |
ioannis@50 | 20 | "sphinx", |
ioannis@50 | 21 | "pytest", |
ioannis@50 | 22 | "netcdf4", |
ioannis@50 | 23 | ], |
ioannis@50 | 24 | entry_points={ |
ioannis@50 | 25 | 'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main'], |
ioannis@50 | 26 | }, |
ioannis@50 | 27 | ) |