-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.cfg
61 lines (54 loc) · 1.46 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
[metadata]
name = scikits.bootstrap
description = Bootstrap confidence interval estimation routines for Numpy/Scipy/Pandas
license = BSD 3-Clause
author = Constantine Evans
author_email = cevans@costinet.org
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = http://github.com/cgevans/scikits-bootstrap
platforms = any
version = 1.2.0
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Operating System :: OS Independent
Typing :: Typed
[options]
include_package_data = True
package_dir =
=src
packages = find_namespace:
install_requires =
numpy
typing_extensions>=4.1; python_version<"3.10"
tests_require =
pytest
pytest-cov
[options.packages.find]
where = src
exclude =
tests
[flake8]
max_line_length = 127
extend_ignore = E203, W503, F403, F405
exclude =
.tox
build
dist
.eggs
docs/conf.py
[bdist_wheel]
universal = 1