forked from sofarocean/sofar-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.27 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
# -*- encoding: utf-8 -*-
import setuptools
with open('README.md', 'r') as file:
readme_contents = file.read()
setuptools.setup(
name='pysofar',
version='0.1.6',
license='Apache 2 Licesnse',
install_requires=[
'requests',
'python-dotenv'
],
description='Python client for interfacing with the Sofar Wavefleet API to access Spotter Data',
long_description=readme_contents,
long_description_content_type='text/markdown',
author='Rufus Sofar',
author_email='[email protected]',
url='https://github.com/wavespotter/wavefleet-client-python',
package_dir={'': 'src'},
packages=setuptools.find_packages('src'),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
],
project_urls={
'Sofar Ocean Site': 'https://www.sofarocean.com',
'Spotter About': 'https://www.sofarocean.com/products/spotter',
'Spotter Data FAQ': 'https://www.sofarocean.com/posts/spotter-data-subscription-and-storage',
'Sofar Dashboard': 'https://spotter.sofarocean.com/',
'Sofar Api FAQ': 'https://spotter.sofarocean.com/api'
}
)