Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/DPPP/kml/python/csml2kml/setup.py@3739
Revision 3739,
482 bytes
checked in by domlowe, 13 years ago
(diff) |
Added entry points for wms2kml and stations2kml scripts
|
Line | |
---|
1 | from setuptools import setup, find_packages |
---|
2 | |
---|
3 | setup(name='csml2kml', |
---|
4 | version='1.0', |
---|
5 | install_requires=['csml>=2.0b'], |
---|
6 | include_package_data=True, |
---|
7 | packages=find_packages(), |
---|
8 | author='Martin Kochan', |
---|
9 | description='Package converting CSML documents and context documents into KML documents, viawable in Google Earth.', |
---|
10 | entry_points = {'console_scripts': ['wms2kml = csml2kml.scripts.wms2kml','stations2kml = csml2kml.scripts.stations2kml']} |
---|
11 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.