setup.py

changeset 55
e1961b511b3d
parent 53
cd7cffb43bfd
child 56
853ab74421c1
equal deleted inserted replaced
54:357138ffbeaf 55:e1961b511b3d
5 import re 5 import re
6 import io 6 import io
7 7
8 # Read the long description from the readme file 8 # Read the long description from the readme file
9 with open("readme.rst", "rb") as f: 9 with open("readme.rst", "rb") as f:
10 long_descr = f.read().decode("utf-8") 10 long_description = f.read().decode("utf-8")
11 11
12 12
13 # Read the version parameters from the __init__.py file. In this way 13 # Read the version parameters from the __init__.py file. In this way
14 # we keep the version information in a single place. 14 # we keep the version information in a single place.
15 def read(*names, **kwargs): 15 def read(*names, **kwargs):
31 31
32 # Run setup 32 # Run setup
33 setup(name='atmospheric_lidar_reader', 33 setup(name='atmospheric_lidar_reader',
34 packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'], 34 packages=['atmospheric_lidar', 'atmospheric_lidar.scripts'],
35 version=find_version("atmospheric_lidar", "__init__.py"), 35 version=find_version("atmospheric_lidar", "__init__.py"),
36 description='Classes for reading raw atmospheric lidar data.', 36 description='Package for reading raw atmospheric lidar data.',
37 long_description=long_descr, 37 long_description=long_description,
38 url='https://bitbucket.org/iannis_b/atmospheric-lidar/', 38 url='https://bitbucket.org/iannis_b/atmospheric-lidar/',
39 author='Ioannis Binietoglou', 39 author='Ioannis Binietoglou',
40 author_email='ioannis@inoe.ro', 40 author_email='ioannis@inoe.ro',
41 license='MIT', 41 license='MIT',
42 classifiers=[ 42 classifiers=[
51 "numpy", 51 "numpy",
52 "matplotlib", 52 "matplotlib",
53 "sphinx", 53 "sphinx",
54 "pytest", 54 "pytest",
55 "netcdf4", 55 "netcdf4",
56 "coloredlogs",
56 ], 57 ],
57 entry_points={ 58 entry_points={
58 'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main'], 59 'console_scripts': ['licel2scc = atmospheric_lidar.scripts.licel2scc:main'],
59 }, 60 },
60 ) 61 )

mercurial