Commit 2d1015e4 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Use find_packages to collect the packages.

Now topydo.commands is also included.
parent d8da896d
from setuptools import setup
from setuptools import setup, find_packages
setup(
name = "topydo",
packages = ["topydo", "topydo.lib", "topydo.cli"],
packages = find_packages(exclude=["test"]),
version = "0.3",
description = "A command-line todo list application using the todo.txt format.",
author = "Bram Schoenmakers",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment