feat: Add propeller swap encoders

- Add setup for package
- Add docs
- Add balancer implementation and test
- Add CI:
  - Add setup action
  - Add test and format CI
- Add CD: Publish python package to AWS
This commit is contained in:
Diana Carvalho
2024-08-29 13:11:07 +01:00
parent e4967b1880
commit 41f20f14b0
13 changed files with 318 additions and 3 deletions

View File

@@ -0,0 +1,35 @@
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "propeller-swap-encoders"
version = "0.1.0"
description = ""
authors = [
{ name = "Propeller Heads" }
]
keywords = ["propeller-swap-encoders"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"propeller-solver-core==0.1.0",
]
[tool.setuptools.packages.find]
include = ["propeller_swap_encoders"]
[project.optional-dependencies]
testing = [
"pytest",
"pytest-runner"
]
[project.urls]
homepage = "https://github.com/propeller-heads/propeller-protocol-lib"