-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
44 lines (36 loc) · 1.14 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
from __future__ import (
absolute_import,
division,
print_function,
with_statement,
)
from setuptools import find_packages, setup
import versioneer
def readme():
with open("README.rst") as f:
return f.read()
reqs = [line.strip() for line in open("requirements.txt")]
setup(
name="pyoos",
version=versioneer.get_version(),
description="A Python library for collecting Met/Ocean observations",
long_description=readme(),
license="GPLv3",
author="Kyle Wilcox",
author_email="[email protected]",
url="https://github.com/ioos/pyoos.git",
packages=find_packages(exclude=["tests.*", "tests"]),
install_requires=reqs,
tests_require=["pytest"],
cmdclass=versioneer.get_cmdclass(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
],
include_package_data=True,
)