Skip to content

Commit

Permalink
add setup and test dir
Browse files Browse the repository at this point in the history
  • Loading branch information
lwaekfjlk committed Oct 10, 2023
1 parent f1669e2 commit c2f130b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
31 changes: 31 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[metadata]
name = sotopia

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"

[options.extras_require]
dev =
pre-commit==3.0.1
pytest==7.1.2
mypy==1.2.0
beartype==0.14.0
nbmake
types-setuptools
pytest-asyncio

[options]
python_requires = >=3.7, <4
packages =
sotopia
lmlib
sotopia_conf

[mypy]
mypy_path = stubs
strict = true
plugins = pydantic.mypy

[mypy-transformers.*]
ignore_missing_imports = True
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from setuptools import setup

if __name__ == "__main__":
setup()
Empty file added tests/dummyfile
Empty file.

0 comments on commit c2f130b

Please sign in to comment.