-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
55 lines (38 loc) · 869 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[metadata]
name = pyorg
version = attr: pyorg.__version__
description = Package for working with Emacs org-mode files
long_description = file: README.md
author = Jared Lumpe
author_email = '[email protected]
url = https://github.com/jlumpe/pyorg
[options]
python_requires = >=3.5
install_requires =
python-emacs~=0.1
setup_requires =
pytest-runner
tests_require =
pytest
packages = find:
include_package_data = true
# Aliases for setuptools commands
[aliases]
test = pytest
# Pytest settings
[tool:pytest]
testpaths = tests
# Flake8 settings
[flake8]
# Ignore these codes:
ignore =
# TABS ARE BETTER
W191,
# indentation contains mixed spaces and tabs - spaces for alignment
E101,
# Blank line at end of file - we require this in .editorconfig
W391
# Exclude these paths:
exclude = docs
# Check style of doctests (not working?)
doctests = True