-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.cfg
60 lines (57 loc) · 1.35 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
[metadata]
name = tsaug
version = 0.2.1
author = Arundo Analytics, Inc.
maintainer = Tailai Wen
maintainer_email = [email protected]
url = https://github.com/arundo/tsaug
description = A package for time series augmentation
long_description = file: README.md
long_description_content_type= text/markdown
keywords = time series, data augmentation
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Topic :: Scientific/Engineering
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
license = Apache License 2.0
[options]
zip_safe = False
python_requires = >=3.5
package_dir =
=src
packages = find:
install_requires =
numpy>=1.14
scipy>=1.1
[options.packages.find]
where = src
exclude =
tests
docs
[options.extras_require]
test =
pytest>=4
tox>=3
coverage>3.6,<5
pytest-cov>=2.7
coveralls>=1.7
mypy>=0.641
scikit-learn>=0.22
doc =
sphinx>=2.4,<3
sphinx_rtd_theme<0.5
nbsphinx>=0.4
python-dateutil>=2.5
jupyter>=1
librosa>=0.7,<0.8
dev =
black==19.3b0
isort==4.3.21