-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg.bkp
More file actions
executable file
·55 lines (51 loc) · 1.51 KB
/
setup.cfg.bkp
File metadata and controls
executable file
·55 lines (51 loc) · 1.51 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
[metadata]
name = pypi-python-package-name
version = 2022.06.1
licence = Deliveroo Internal
url = https://github.com/jamesowers-roo/python-pacakge-example
author = Your Name
author_email = your.name@deliveroo.co.uk
keywords = data-science datascience
description = The short description also in the first line of the readme
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
License :: Other/Proprietary License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
[options]
# install_requires should only include the package installations your *python package*
# and *scripts* depends upon - keep this list minimal: anyone installs your package will
# install these packages too
# Please keep this package list sorted
install_requires =
fire
numpy
python_requires =
~=3.9
packages = find:
# When the python package is installed, these scripts come included in a bin folder and
# will be available via the user's $PATH, i.e. they can execute them from anywhere
scripts =
scripts/example_bash_script
scripts/example_python_script
scripts/example_python_executable
[options.extras_require]
# Optional installations, installed with pip install package_name[option_name]
# Please keep this package list sorted
dev =
black
flake8
isort
mypy
nbqa
pre-commit
pylint
pytest
pytest-cov
[tool:pytest]
testpaths = tests
addopts = --cov --cov-report=term-missing
[flake8]
max-line-length = 88
ignore = E203, W503