Updating the docs and somewhat packaging for submission
This commit is contained in:
parent
3fc5bff69c
commit
6c2c9190c9
5 changed files with 124 additions and 38 deletions
projects/lilith
|
@ -1,5 +1,8 @@
|
|||
from setuptools import setup
|
||||
|
||||
with open("requirements.txt") as fp:
|
||||
requirements = [l.strip() for l in fp.readlines()]
|
||||
|
||||
setup(
|
||||
name="arrdem.lilith",
|
||||
# Package metadata
|
||||
|
@ -10,11 +13,15 @@ setup(
|
|||
packages=[
|
||||
"lilith",
|
||||
],
|
||||
install_requires=[
|
||||
"lark",
|
||||
],
|
||||
test_requires=[
|
||||
"pytest",
|
||||
"hypothesis",
|
||||
],
|
||||
package_data={"": [
|
||||
"src/python/lilith/*.lark",
|
||||
"src/python/lilith/*.lil",
|
||||
]},
|
||||
include_package_data=True,
|
||||
install_requires=requirements,
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"lil = lilith.__main__:main",
|
||||
],
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue