-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
70 lines (65 loc) · 1.07 KB
/
setup.cfg
File metadata and controls
70 lines (65 loc) · 1.07 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
[metadata]
name = python_utils
version=0.1.3
author = JAMWINE
author_email = [email protected]
description = A package that includes custom Python utils
url = https://github.com/jamwine/python-utils
keywords = python_utils
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
[options]
python_requires = >=3.9
install_requires =
setuptools
packages = find:
include_package_data = True
tests_require = pytest
zip_safe = False
platforms = any
[options.packages.find]
include =
python_utils
python_utils.*
exclude = tests
[options.extras_require]
lint =
black
flake8
isort
jedi
jupyter
yapf
test =
pytest
pytest-cov
pytest-mock
pytest-env
codecov
coverage
docs =
sphinx
sphinx_rtd_theme
flake8-docstrings
docutils
dev =
black
flake8
flake8-docstrings
isort
jedi
jupyter
yapf
pytest
pytest-cov
pytest-mock
pytest-env
codecov
coverage
sphinx
sphinx_rtd_theme
docutils
[options.entry_points]
[bdist_wheel]
universal = 1