setup.py

changeset 39
e8f9608ad204
parent 37
7c76fdbdf1a3
child 50
510d7ac14280
equal deleted inserted replaced
38:4a8c544f683f 39:e8f9608ad204
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', ],

mercurial