| 1 #!/usr/bin/env python |
1 #!/usr/bin/env python |
| 2 |
2 |
| 3 from setuptools import setup |
3 from setuptools import setup |
| 4 |
4 |
| 5 # Read the long description from the readmefile |
5 # Read the long description from the readmefile |
| 6 with open("README.md", "rb") as f: |
6 with open("readme.rst", "rb") as f: |
| 7 long_descr = f.read().decode("utf-8") |
7 long_descr = f.read().decode("utf-8") |
| 8 |
8 |
| 9 # Run setup |
9 # Run setup |
| 10 setup(name='atmospheric_lidar', |
10 setup(name='atmospheric_lidar', |
| 11 packages=['atmospheric_lidar', ], |
11 packages=['atmospheric_lidar', ], |