setup.py

Mon, 22 Feb 2016 17:03:44 +0200

author
Ioannis <devnull@localhost>
date
Mon, 22 Feb 2016 17:03:44 +0200
changeset 37
7c76fdbdf1a3
parent 36
atmospheric_lidar/setup.py@a281a26f4626
child 39
e8f9608ad204
permissions
-rwxr-xr-x

Cleaning up moves, and new setup.py

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

mercurial