-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
39 lines (34 loc) · 934 Bytes
/
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
# Setuptools config for the framework packaging
[metadata]
name = something_framework
description = Skeleton Pytest Framework
license = GNU General Public License v3.0
classifiers =
Programming Language :: Python :: 3.7
[options]
zip_safe = False
include_package_data = True
packages = find:
# Entry Points can be used to define framework tooling, and pytest plugin definitions
entry_points = file:entry_points.txt
setup_requires = setuptools_scm
# define your requirements directly in setup!
install_requires =
attrs
click
docker
ipython
dynaconf
paramiko
pre-commit
pytest
requests
wait_for
[options.package_data]
* = *.txt, *.rst
#[options.packages.find]
#exclude = something/tests # might not want to include some directories when packaging
# You can spec your flake8 config here too!
[flake8]
ignore = E128,E811,W503,W504
max-line-length = 120 # just get a DQHD monitor already