forked from OSOceanAcoustics/echopype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.74 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from __future__ import absolute_import, division, print_function
from os.path import join as pjoin
from setuptools import setup, find_packages
import versioneer
# Long description will go up on the pypi page
with open('README.rst') as file:
LONG_DESCRIPTION = file.read()
# Dependencies.
with open('requirements.txt') as f:
requirements = f.readlines()
INSTALL_REQUIRES = [t.strip() for t in requirements]
opts = dict(name='echopype',
maintainer='Wu-Jung Lee',
maintainer_email='[email protected]',
description='Enhancing the interoperability and scalability in analyzing ocean sonar data',
long_description=LONG_DESCRIPTION,
url='https://github.com/OSOceanAcoustics/echopype',
download_url='',
license='Apache License, Version 2.0',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'],
author='Wu-Jung Lee',
author_email='[email protected]',
platforms='OS Independent',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
package_data={'echopype': [pjoin('data', '*')]},
install_requires=INSTALL_REQUIRES,
tests_require='tox',
scripts=['echopype/convert/echopype_converter'])
if __name__ == '__main__':
setup(**opts)