File tree Expand file tree Collapse file tree 4 files changed +31
-19
lines changed Expand file tree Collapse file tree 4 files changed +31
-19
lines changed Original file line number Diff line number Diff line change 1
1
__pycache__
2
2
/dist /
3
+ yamlcore.egg-info /
Original file line number Diff line number Diff line change 1
1
include Changelog.md Readme.md LICENSE
2
2
recursive-include examples *
3
3
recursive-include tests *
4
+ global-exclude */__pycache__/*
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [' setuptools>=42 ' ]
2
+ requires = [' setuptools >= 61.0 ' ]
3
3
build-backend = ' setuptools.build_meta'
4
+
5
+ [project ]
6
+ name = " yamlcore"
7
+ version = " 0.0.3"
8
+ dependencies = [
9
+ " PyYAML" ,
10
+ ]
11
+ requires-python = " >= 3.6"
12
+ authors = [
13
+ {
name =
" Tina Müller" ,
email =
" [email protected] " },
14
+ ]
15
+ description = " YAML 1.2 Support for PyYAML"
16
+ readme = " Readme.md"
17
+ license = {file = " LICENSE" }
18
+ keywords = [" yaml" ]
19
+ classifiers = [
20
+ " Development Status :: 5 - Production/Stable" ,
21
+ " Intended Audience :: Developers" ,
22
+ " License :: OSI Approved :: MIT License" ,
23
+ " Operating System :: OS Independent" ,
24
+ " Programming Language :: Python :: 3" ,
25
+ ]
26
+ [project .urls ]
27
+ Homepage = " https://github.com/perlpunk/pyyaml-core"
28
+ Documentation = " https://github.com/perlpunk/pyyaml-core"
29
+ Repository = " https://github.com/perlpunk/pyyaml-core"
30
+ Issues = " https://github.com/perlpunk/pyyaml-core/issues"
31
+ Changelog = " https://github.com/perlpunk/pyyaml-core/blob/main/Changelog.md"
Original file line number Diff line number Diff line change 1
- [metadata]
2
- name = yamlcore
3
- version = 0.0.3
4
- author = Tina Müller
5
-
6
- description = YAML 1.2 Support for PyYAML
7
- long_description = file: Readme.md, LICENSE
8
- long_description_content_type = text/markdown
9
- url = https://github.com/perlpunk/pyyaml-core
10
- project_urls =
11
- Bug Tracker = https://github.com/perlpunk/pyyaml-core/issues
12
- repository = https://github.com/perlpunk/pyyaml-core
13
- changelog = https://github.com/perlpunk/pyyaml-core/blob/main/Changelog.md
14
- classifiers =
15
- Programming Language :: Python :: 3
16
- License :: OSI Approved :: MIT License
17
- Operating System :: OS Independent
18
-
19
1
[options]
20
2
package_dir =
21
3
= .
You can’t perform that action at this time.
0 commit comments