| 5 import re |
5 import re |
| 6 import io |
6 import io |
| 7 |
7 |
| 8 # Read the long description from the readme file |
8 # Read the long description from the readme file |
| 9 with open("readme.rst", "rb") as f: |
9 with open("readme.rst", "rb") as f: |
| 10 long_descr = f.read().decode("utf-8") |
10 long_description = f.read().decode("utf-8") |
| 11 |
11 |
| 12 |
12 |
| 13 # Read the version parameters from the __init__.py file. In this way |
13 # Read the version parameters from the __init__.py file. In this way |
| 14 # we keep the version information in a single place. |
14 # we keep the version information in a single place. |
| 15 def read(*names, **kwargs): |
15 def read(*names, **kwargs): |
| 31 |
31 |
| 32 # Run setup |
32 # Run setup |
| 33 setup(name='atmospheric_lidar_reader', |
33 setup(name='atmospheric_lidar_reader', |
| 34 packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'], |
34 packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'], |
| 35 version=find_version("atmospheric_lidar", "__init__.py"), |
35 version=find_version("atmospheric_lidar", "__init__.py"), |
| 36 description='Classes for reading raw atmospheric lidar data.', |
36 description='Package for reading raw atmospheric lidar data.', |
| 37 long_description=long_descr, |
37 long_description=long_description, |
| 38 url='https://bitbucket.org/iannis_b/atmospheric-lidar/', |
38 url='https://bitbucket.org/iannis_b/atmospheric-lidar/', |
| 39 author='Ioannis Binietoglou', |
39 author='Ioannis Binietoglou', |
| 40 author_email='ioannis@inoe.ro', |
40 author_email='ioannis@inoe.ro', |
| 41 license='MIT', |
41 license='MIT', |
| 42 classifiers=[ |
42 classifiers=[ |