This repository has been archived by the owner on Mar 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
58 lines (49 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from __future__ import (
absolute_import,
division,
print_function,
unicode_literals,
)
import os
from codecs import open
from setuptools import find_packages, setup
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
# Dependencies.
with open("requirements.txt") as f:
requirements = f.readlines()
install_requires = [t.strip() for t in requirements]
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="yodapy",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Your Ocean Data Access in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
author="Landung Setiawan",
author_email="[email protected]",
maintainer="Landung Setiawan",
maintainer_email="[email protected]",
python_requires=">=3",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
],
keywords=["Ocean", "Data", "Access", "OOI"],
include_package_data=True,
packages=find_packages(),
install_requires=install_requires,
setup_requires=["setuptools>=38.6.0", "wheel>=0.31.0", "twine>=1.11.0"],
)