forked from wesleybowman/UTide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (56 loc) · 1.23 KB
/
setup.cfg
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
59
60
61
62
[metadata]
name = UTide
description = Python distribution of the MatLab package UTide
author = Wesley Bowman
author_email = [email protected]
url = https://github.com/wesleybowman/UTide
long_description_content_type = text/x-rst
long_description = file: README.rst
license = MIT
license_file = LICENSE.txt
keywords = oceanography tides
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Education
[options]
install_requires =
scipy
numpy
python_requires = >=3.6
packages = find:
zip_safe = False
include_package_data = True
[options.package_data]
* =
data/*.npz
[sdist]
formats = gztar
[tool:pytest]
flake8-max-line-length = 105
flake8-ignore =
E741,E226,W504
docs/* ALL
[check-manifest]
ignore =
*.yml
utide/data/*.mat
docs
docs/*
*.enc
notebooks
notebooks/*
tests
tests/*
[flake8]
max-line-length = 105
select = C,E,F,W,B,B950
ignore = E203, E501, W503