-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (43 loc) · 1.22 KB
/
setup.cfg
File metadata and controls
44 lines (43 loc) · 1.22 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
[metadata]
name = methodtools
version = 0.4.7
url = https://github.com/youknowone/methodtools
author = Jeong YunWon
author_email = methodtools@youknowone.org
license = BSD 2-Clause License
license_file = LICENSE
description = Expand standard functools to methods
long_description = file: README.rst
keywords = ring,functools,lru_cache,method
classifier =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
py_modules = methodtools
install_requires =
wirerope>=0.4.7
[options.extras_require]
test =
functools32>=3.2.3-2;python_version<"3"
pytest>=4.6.7
pytest-cov>=2.6.1
pytest-checkdocs>=2.9.0;python_version>="3.8"
doc =
sphinx
[aliases]
test=pytest
[tool:pytest]
addopts=--verbose --cov-config .coveragerc --cov methodtools
python_files = tests/test*.py
norecursedirs=.git py ci
[bdist_wheel]
universal=1