-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
52 lines (46 loc) · 1.25 KB
/
setup.cfg
File metadata and controls
52 lines (46 loc) · 1.25 KB
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
# https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c
[metadata]
name = markup-parser
version = file: VERSION
author = Aleskandr Sokolov
author_email = bigpewm@gmail.com
url = https://github.com/bigpe/markup-parser
description = Parse JS variables from HTML markup
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
keywords = html, parse, markup, js, variables, rust
platform = any
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
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
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.6.0
setup_requires =
setuptools
setuptools-rust
wheel
package_dir =
markup_parser=src/markup_parser
tests=src/test
packages =
markup_parser
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[check]
metadata = true
strict = true