setup.py

Thu, 16 Feb 2017 09:23:20 +0200

author
Ioannis <ioannis@inoe.ro>
date
Thu, 16 Feb 2017 09:23:20 +0200
changeset 50
510d7ac14280
parent 39
e8f9608ad204
child 53
cd7cffb43bfd
permissions
-rwxr-xr-x

Update main script to make use of the command line script.

#!/usr/bin/env python

from setuptools import setup

# Read the long description from the readmef ile
with open("readme.rst", "rb") as f:
    long_descr = f.read().decode("utf-8")

# Run setup
setup(name='atmospheric_lidar_reader',
      packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'],
      version='0.2.0',
      description='Classes for reading raw atmospheric lidar data.',
      long_description=long_descr,
      author='Ioannis Binietoglou',
      author_email='ioannis@inoe.ro',
      install_requires=[
          "numpy",
          "matplotlib",
          "sphinx",
          "pytest",
          "netcdf4",
      ],
      entry_points={
          'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main'],
      },
      )

mercurial