14 lines
347 B
Python
14 lines
347 B
Python
# from setuptools import find_packages, setup
|
|
|
|
# setup(
|
|
# name="eolas-db",
|
|
# version="0.1",
|
|
# packages=find_packages(where="src"),
|
|
# package_dir={"": "src"},
|
|
# install_requires=["python-frontmatter", "termcolor"],
|
|
# entry_points={
|
|
# "console_scripts": [
|
|
# "eolas-db=cli:main",
|
|
# ],
|
|
# },
|
|
# )
|