Initial deeply busted Lilith state for LangJam
This commit is contained in:
parent
2b101bf02c
commit
43bbcda050
7 changed files with 270 additions and 0 deletions
projects/lilith
20
projects/lilith/setup.py
Normal file
20
projects/lilith/setup.py
Normal 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",
|
||||
],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue