| |
1 #!/usr/bin/env python |
| |
2 |
| |
3 from setuptools import setup |
| |
4 |
| |
5 # Read the long description from the readmefile |
| |
6 with open("README.md", "rb") as f: |
| |
7 long_descr = f.read().decode("utf-8") |
| |
8 |
| |
9 # Run setup |
| |
10 setup(name='atmospheric_lidar', |
| |
11 packages=['atmospheric_lidar', ], |
| |
12 version='0.1.0', |
| |
13 description='Classes for reading raw atmospheric lidar data.', |
| |
14 long_description = long_descr, |
| |
15 author='Ioannis Binietoglou', |
| |
16 author_email='binietoglou@noa.gr', |
| |
17 install_requires=[ |
| |
18 "numpy", |
| |
19 "matplotlib", |
| |
20 "sphinx", |
| |
21 "pytest" |
| |
22 ], |
| |
23 ) |
| |
24 |