-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (24 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
import os
ROOT_DIR='metaCTD'
with open(os.path.join(ROOT_DIR, 'VERSION')) as version_file:
version = version_file.read().strip()
# read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='metaCTD',
version=version,
description='GUI to read and view conductivity, temperature and depth (CTD) files and to manage and creating metadata by defining stations, transects, campaigns',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/MarineDataTools/metaCTD',
author='Peter Holtermann',
author_email='peter.holtermann@io-warnemuende.de',
license='GPLv03',
packages=find_packages(),
scripts = [],
entry_points={ 'console_scripts': ['metaCTD=metaCTD.gui.metaCTD_gui:main']},
package_data = {'':['VERSION','stations/iow_stations.yaml','ships/ships.yaml']},
install_requires=[ 'gsw', 'pyproj','pytz','pyaml','pycnv','geojson','pysst'],
zip_safe=False)