-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (49 loc) · 1.45 KB
/
setup.cfg
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
# This file is used to configure your project.
# Read more about the various options under:
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = newpy
version = 0.1.10
description = newpy
author = Janith Petangoda
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8; variant=GFM
[options]
packages = find:
include_package_data = True
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires =
# Require a specific Python version, e.g. Python 2.7 or >= 3.4
python_requires = >=3.10
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install Kuhn[test]` like:
# PDF = ReportLab; RXP
# Add here test requirements (semicolon/line-separated)
dev =
pytest
pytest-xdist
pre-commit==3.7.1
[flake8]
max-line-length = 240
ignore = E111,E114
extend-ignore =
# Ignore indentation of four errors
E111
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
.pytype
[options.entry_points]
console_scripts =
newpy = newpy.newpy:main