To-The-Stars/setup.py

13 lines
287 B
Python
Raw Permalink Normal View History

"""Entrypoint for litwiki"""
from setuptools import setup
setup(
name="litwiki",
version="0.0.1",
author="Leni Aniva",
author_email="<v@leni.sh>",
description="Generation of progression wiki for literature",
2023-09-11 20:40:30 -07:00
packages=['litwiki'],
scripts=['scripts/check']
)