Skip to content

Commit

Permalink
Added MANIFEST.in and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
luisenp committed May 6, 2021
1 parent 3aae63a commit 818a2ed
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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
20 changes: 20 additions & 0 deletions pyproyect.toml
Original file line number Diff line number Diff line change
@@ -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*
)
)
'''

0 comments on commit 818a2ed

Please sign in to comment.