-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New from the ground up object based implementation in stead of parsing of type strings, which improves performance, flexibility and readability.
- Loading branch information
Showing
50 changed files
with
1,314 additions
and
59,651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[build-system] | ||
requires = ["setuptools>=61", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "scalecodec" | ||
description = "Python SCALE Codec Library" | ||
readme = "README.md" | ||
|
||
authors = [ | ||
{ name = "Polkascan Foundation", email = "[email protected]" } | ||
] | ||
|
||
requires-python = ">=3.6, <4" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3" | ||
] | ||
keywords = ["scale", "codec", "polkascan", "polkadot", "substrate", "blockchain", "kusama"] | ||
|
||
dynamic = ["dependencies", "version"] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"coverage==5.3", | ||
"pytest>=6.1.2", | ||
"mkdocs", | ||
"mkdocs-material", | ||
"mkdocs-autorefs", | ||
"mkdocstrings", | ||
"mkdocstrings[python]" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/polkascan/py-scale-codec" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
exclude = ["contrib", "docs", "tests", "test"] | ||
|
||
[tool.setuptools.package-data] | ||
"scalecodec.type_registry" = ["*.json"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "scalecodec.__version__"} | ||
dependencies = {file = ["requirements.txt"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,3 @@ | ||
base58==2.0.1 | ||
atomicwrites~=1.4.0 | ||
attrs~=20.3.0 | ||
coverage==5.3 | ||
more-itertools~=8.6.0 | ||
pluggy==0.13.1 | ||
pytest>=6.1.2 | ||
base58>=2.0.1 | ||
more-itertools>=8.6.0 | ||
requests>=2.24.0 | ||
six==1.15.0 | ||
|
||
mkdocs | ||
mkdocs-material | ||
mkdocs-autorefs | ||
mkdocstrings | ||
mkdocstrings[python] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.