-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (49 loc) · 1.66 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
from setuptools import find_packages, setup
from pathlib import Path
this_directory = Path(__file__).parent
readme = (this_directory / "README.md").read_text()
history = (this_directory / "HISTORY.md").read_text()
setup(
name="velosearaptor",
version="0.2.0",
author="velosearaptor Developers",
author_email="",
url="https://github.com/gunnarvoet/velosearaptor/",
license="",
# Description
description="Python functions for interfacing with RDI ADCP data, mostly based on pycurrents",
long_description=f"{readme}\n\n{history}",
long_description_content_type='text/markdown',
# Requirements
python_requires=">=3.6",
install_requires=[
"numpy",
"scipy",
"xarray",
"matplotlib",
],
extras_require={
"test": [ # install these with: pip install velosearaptor[test]
"pytest>=3.8",
],
},
# Packaging
packages=find_packages(include=["velosearaptor", "velosearaptor.*"], exclude=["*.tests"]),
include_package_data=True,
zip_safe=False,
platforms=["any"], # or more specific, e.g. "win32", "cygwin", "osx"
# Metadata
project_urls={"Documentation": ""},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)