| |
1 #!/usr/bin/env python |
| |
2 |
| |
3 from setuptools import setup |
| |
4 |
| |
5 # Read the long description from the readmefile |
| |
6 with open("README.rst", "rb") as f: |
| |
7 long_descr = f.read().decode("utf-8") |
| |
8 |
| |
9 # Run setup |
| |
10 setup(name='cloudmask', |
| |
11 packages=['cloudmask', ], |
| |
12 version='0.1.1', |
| |
13 description='Scripts for applying a cloud mask to uncalibrated lidar signals', |
| |
14 long_description = long_descr, |
| |
15 author='Ioannis Binietoglou', |
| |
16 author_email='ioannis@inoe.ro', |
| |
17 install_requires=[ |
| |
18 "numpy", |
| |
19 "matplotlib", |
| |
20 "sphinx", |
| |
21 "scikit-image", |
| |
22 "pytest" |
| |
23 ], |
| |
24 ) |
| |
25 |