Initial deeply busted Lilith state for LangJam

This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-20 23:16:59 -06:00
commit 43bbcda050
7 changed files with 270 additions and 0 deletions
projects/lilith

20
projects/lilith/setup.py Normal file
View file

@ -0,0 +1,20 @@
from setuptools import setup
setup(
name="arrdem.lilith",
# Package metadata
version="0.0.0",
license="MIT",
# Package setup
package_dir={"": "src/python"},
packages=[
"lilith",
],
install_requires=[
"lark",
],
test_requires=[
"pytest",
"hypothesis",
],
)