-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (94 loc) · 2.44 KB
/
pyproject.toml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "checkrs"
author = "Timothy Brathwaite"
author-email = "[email protected]"
home-page = "https://github.com/timothyb0912/checkrs"
requires = [
"altair",
"altair-viewer",
"attrs",
"future",
"matplotlib",
"numpy",
"pandas",
"plotnine",
"scipy",
"seaborn",
"scikit-learn",
"scipy",
"seaborn",
"statsmodels",
"torch",
"typing_extensions",
"tqdm",
]
requires-python=">=3.3"
description-file = "README.md"
keywords= "diagnostics,visualization,data-science,matplotlib"
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Environment :: Console",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
]
[tool.flit.sdist]
exclude = ["src/checkrs/newsfragments/"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py36, py37, py38
[testenv]
deps = pytest >= 3.3.0
commands = pytest
"""
[tool.towncrier]
package = "checkrs"
package_dir = "src/"
filename = "CHANGELOG.rst"
title_format = "{name} {version} ({project_date})"
wrap = true # Wrap text to 79 characters
all_bullets = true
[[tool.towncrier.type]]
directory = "added"
name = "Added new features"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed existing functionality"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Marked for removal"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed from package"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Bug fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "security"
name = "Patched vulnerabilities"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = true