-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
71 lines (54 loc) · 1.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[metadata]
name = python-emacs
version = attr: emacs.__version__
description = Python interface to GNU Emacs.
long_description = file: README.md
long_description_content_type = text/markdown
author = Jared Lumpe
author_email = [email protected]
url = https://github.com/jlumpe/python-emacs
project_urls =
Documentation = https://python-emacs.readthedocs.io/en/stable/
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Emacs-Lisp
License :: OSI Approved :: MIT License
Development Status :: 4 - Beta
Topic :: Text Editors :: Emacs
[options]
include_package_data = true
python_requires = >=3.6
install_requires =
# Dependencies go here
tests_require =
pytest
packages = find:
# Aliases for setuptools commands
[aliases]
test = pytest
# Pytest settings
[tool:pytest]
testpaths = tests
markers =
requires_emacs: Test requires emacs executable to run. Skip with '-m "not requires_emacs"'
# 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