diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..8686035f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include LICENSE README.md +include requirements/*.txt +include mbrl/examples/conf/*.yaml +include mbrl/examples/conf/algorithm/*.yaml +include mbrl/examples/conf/dynamics_model/*.yaml +include mbrl/examples/conf/overrides/*.yaml \ No newline at end of file diff --git a/pyproyect.toml b/pyproyect.toml new file mode 100644 index 00000000..43e6846b --- /dev/null +++ b/pyproyect.toml @@ -0,0 +1,20 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" + +[tool.black] +line-length = 88 +exclude = ''' +( + /( + .eggs # exclude a few common directories in the + | .git # root of the project + | .mypy_cache + | docs + | *personal* + ) +) +''' \ No newline at end of file