forked from PennyDreadfulMTG/pystache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (62 loc) · 1.44 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 = pystache
version = attr: pystache.__version__
author = Chris Wanstrath
author_email = [email protected]
maintainer = Steve Arnold
maintainer_email = [email protected]
description = Mustache for Python
url = https://github.com/sarnold/pystache
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
python_requires = >=3.6
zip_safe = True
include_package_data = True
packages = find:
[options.package_data]
* = *.mustache, *.txt
[options.entry_points]
console_scripts =
pystache=pystache.commands.render:main
pystache-test=pystache.commands.test:main
[options.extras_require]
test =
nose
cov =
coverage
coverage_python_version
[check]
metadata = true
restructuredtext = true
strict = false
[bdist_wheel]
universal = 0
[check-manifest]
ignore =
.codeclimate.yml
.gitattributes
.coveragerc
.gitignore
.pep8speaks.yml
coverage*
conda/**
[nosetests]
traverse-namespace = 1
verbosity = 3
with-coverage = 1
with-doctest = 1
doctest-extension = rst
cover-package = pystache
cover-xml = 1
# set the default ignore here so we can append on cmdline
ignore-files = (?:^\.|^_,|^setup\.py$)