-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (49 loc) · 1.17 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
[metadata]
name = pyndler
version = attr: pyndler.__version__
author = codetent
description = Executable bundler for Windows
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
platforms = Windows
url = https://github.com/codetent/pyndler
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Topic :: Software Development :: Build Tools
[options]
python_requires = >=3.7
package_dir =
=src
packages = find:
install_requires =
plumbum
[options.packages.find]
where = src
[options.extras_require]
test =
pytest
pytest-cov
flake8
flake8-annotations
flake8-comprehensions
flake8-docstrings
flake8-raise
flake8-typing-imports
[options.package_data]
pyndler.rcedit = *.exe
[options.entry_points]
console_scripts =
pyndler = pyndler.cli:Pyndler.run
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 120
docstring-convention = google
[yapf]
column_limit = 120