forked from OceanNetworksCanada/api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (35 loc) · 1.29 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
import setuptools
# Modify this version before publishing a new release
buildVersion = "2.3.6.1"
print('setup.py has build version: ' + buildVersion + '. Make sure this is the version you want to upload.')
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="onc",
version=buildVersion,
# Original author, emails go to generic data team address
author="ONC Data Team / TUM",
author_email="data@oceannetworks.ca",
# Current maintainer here, all previous maintainers to be acknowledged in README.md
maintainer="Kilian Holzapfel",
maintainer_email="kilian.holzapfel@tum.de",
description="Ocean 2.0 API Python Client Library",
license="Apache 2.0",
keywords="ONC Ocean API",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://wiki.oceannetworks.ca/display/O2A/Python+Client+Library',
packages=setuptools.find_packages(),
install_requires=[
'requests',
'python-dateutil',
'numpy',
'humanize',
'urllib3'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)