mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
261 B
14 lines
261 B
"""Extremely minimal setup.py to support pip install -e."""
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
setup(
|
|
name="tildes",
|
|
version="0.1",
|
|
packages=find_packages(),
|
|
entry_points="""
|
|
[paste.app_factory]
|
|
main = tildes:main
|
|
""",
|
|
)
|