-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
67 lines (58 loc) · 1.63 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
63
64
65
66
67
[sdist]
formats = gztar
[flake8]
max-line-length = 105
select = C,E,F,W,B,B950
ignore = E203, E501, W503
exclude = xapres/_version.py
[metadata]
name = xapres
description = A package for processing data from the Autonomous phase-sensitive Radio-Echo Sounder (ApRES) using xarray.
author = ldeo_glaciology
url = https://github.com/ldeo-glaciology/xapres
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE.txt
## These need to be filled in by the author!
# For details see: https://pypi.org/classifiers/
classifiers =
Development Status :: 2 - Pre-Alpha
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
# Dont change this one
License :: OSI Approved :: MIT License
## Add your email here
author_email = j.kingslake@columbia.edu
### make sure to fill in your dependencies!
[options]
install_requires =
gcsfs
numpy
xarray
pandas
tqdm
zarr
dask
sounddevice
soundfile
netCDF4
fsspec
setup_requires=
setuptools_scm
python_requires = >=3.6
include_package_data = True
#zip_safe = False
packages =
xapres
#[options.packages.find] # (always `find` even if `find_namespace:` was used before)
# This section is optional as well as each of the following options:
#where=src # . by default
#include=xapres* # * by default
#exclude=mypackage.tests* # empty by default