setup.py

changeset 52
fdf4373db30e
parent 50
510d7ac14280
child 53
cd7cffb43bfd
equal deleted inserted replaced
51:d91b87f26354 52:fdf4373db30e
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 readmef ile
6 with open("readme.rst", "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_reader',
11 packages=['atmospheric_lidar', ], 11 packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'],
12 version='0.1.0', 12 version='0.2.0',
13 description='Classes for reading raw atmospheric lidar data.', 13 description='Classes for reading raw atmospheric lidar data.',
14 long_description = long_descr, 14 long_description=long_descr,
15 author='Ioannis Binietoglou', 15 author='Ioannis Binietoglou',
16 author_email='binietoglou@noa.gr', 16 author_email='ioannis@inoe.ro',
17 install_requires=[ 17 install_requires=[
18 "numpy", 18 "numpy",
19 "matplotlib", 19 "matplotlib",
20 "sphinx", 20 "sphinx",
21 "pytest" 21 "pytest",
22 ], 22 "netcdf4",
23 ) 23 ],
24 24 entry_points={
25 'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main'],
26 },
27 )

mercurial