-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
74 lines (67 loc) · 1.85 KB
/
setup.cfg
File metadata and controls
74 lines (67 loc) · 1.85 KB
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
68
69
70
71
72
73
74
[metadata]
name = macpie
version = attr: macpie.__version__
url = https://github.com/UCSFMemoryAndAging/macpie
project_urls =
Code = https://github.com/UCSFMemoryAndAging/macpie
license = BSD-2-Clause
maintainer = Regents of the University of California
maintainer_email = [email protected]
description = A Python library and command line tool for clinical research data analysis.
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.9
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
macpie = macpie.cli.macpie.main:main
mppair = macpie.cli.mppair.main:main
mpsql = macpie.cli.mpsql.main:main [mpsql]
[tool:pytest]
addopts = -ra -s
testpaths = tests
filterwarnings =
error
# ignore distutils DeprecationWarning for python 3.10
ignore::DeprecationWarning
[coverage:run]
branch = True
source =
macpie
tests
[coverage:paths]
source =
src
*/site-packages
[flake8]
ignore =
# slice notation whitespace, invalid
E203
# bin op line break, invalid
W503
max-line-length = 120
per-file-ignores =
# __init__ module exports names
src/macpie/*/__init__.py:F401
#src/macpie/pandas/accessor.py:F403, F405
tests/conftest.py:F401
exclude =
.tox,
build