2021-08-21 05:16:59 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2021-08-30 04:18:57 +00:00
|
|
|
|
2021-08-22 04:25:31 +00:00
|
|
|
with open("requirements.txt") as fp:
|
|
|
|
requirements = [l.strip() for l in fp.readlines()]
|
|
|
|
|
2021-08-21 05:16:59 +00:00
|
|
|
setup(
|
|
|
|
name="arrdem.lilith",
|
|
|
|
# Package metadata
|
|
|
|
version="0.0.0",
|
|
|
|
license="MIT",
|
|
|
|
# Package setup
|
|
|
|
package_dir={"": "src/python"},
|
|
|
|
packages=[
|
|
|
|
"lilith",
|
|
|
|
],
|
2021-09-03 04:10:35 +00:00
|
|
|
package_data={
|
|
|
|
"": [
|
|
|
|
"src/python/lilith/*.lark",
|
|
|
|
"src/python/lilith/*.lil",
|
|
|
|
]
|
|
|
|
},
|
2021-08-22 04:25:31 +00:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=requirements,
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"lil = lilith.__main__:main",
|
|
|
|
],
|
|
|
|
},
|
2021-08-21 05:16:59 +00:00
|
|
|
)
|