-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
44 lines (40 loc) · 1.14 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
[metadata]
name = pytomlpp
version = 1.0.14
author = Bob Fang
author_email = [email protected]
license_file = LICENSE
description = A python wrapper for toml++
long_description = file: README.md
long_description_content_type = text/markdown
project_urls =
Source = https://github.com/bobfang1992/pytomlpp
Tracker = https://github.com/bobfang1992/pytomlpp/issues
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Topic :: Utilities
keywords = toml, parser, serilization, deserialization, serdes
[options]
setup_requires =
pybind11~=2.10
zip_safe = false
packages = find:
package_dir = =src
[options.packages.find]
where = src
[options.package_data]
* =
*.pyi
py.typed
[tool:pytest]