Skip to content

Commit 692d3a2

Browse files
committed
initial commit
0 parents  commit 692d3a2

16 files changed

+770
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/.idea/
2+
/env/
3+
/env*/
4+
*.py[cod]
5+
*.egg-info/
6+
build/
7+
dist/
8+
.cache/
9+
.mypy_cache/
10+
test.py
11+
.coverage
12+
htmlcov/
13+
docs/_build/
14+
/.pytest_cache/
15+
/sandbox/
16+
/foobar.py
17+
/pydantic_core/*.so
18+
/target/
19+
/site/
20+
.rustfmt.toml
21+
/sandox/

.pre-commit-config.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.0.1
4+
hooks:
5+
- id: check-yaml
6+
args: ['--unsafe']
7+
- id: check-toml
8+
- id: end-of-file-fixer
9+
- id: trailing-whitespace
10+
- id: check-added-large-files
11+
12+
- repo: local
13+
hooks:
14+
- id: lint-python
15+
name: Lint Python
16+
entry: make lint-python
17+
types: [python]
18+
language: system
19+
- id: lint-rust
20+
name: Lint Rust
21+
entry: make lint-rust
22+
types: [rust]
23+
language: system
24+
- id: mypy
25+
name: Mypy
26+
entry: make mypy
27+
types: [python]
28+
language: system

Cargo.lock

+253
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "pydantic-core"
3+
version = "0.0.1"
4+
edition = "2021"
5+
6+
[dependencies]
7+
pyo3 = {version = "0.16.1", features = ["extension-module"]}
8+
indexmap = "1.8.1"
9+
10+
[lib]
11+
name = "_pydantic_core"
12+
crate-type = ["cdylib"]

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 Samuel Colvin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include LICENSE
2+
include README.md
3+
include Cargo.toml
4+
recursive-include src *

0 commit comments

Comments
 (0)