setup.py

Mon, 13 Feb 2017 16:49:05 +0200

author
Iannis <ulalume3@yahoo.com>
date
Mon, 13 Feb 2017 16:49:05 +0200
changeset 46
d84759347999
parent 39
e8f9608ad204
child 50
510d7ac14280
permissions
-rwxr-xr-x

Example files for IPRAL system.

#!/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='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"
    ],
     )

mercurial