pydo/setup.py

12 lines
266 B
Python
Raw Normal View History

2018-09-16 10:52:08 +00:00
#!/usr/bin/env python3
from distutils.core import setup
setup(name="pydo.txt",
2021-03-19 14:23:37 +00:00
version="1.2",
2018-09-16 10:52:08 +00:00
description="A module to parse todo.txt tasks",
author="Alvie Rahman",
url="https://github.com/alvierahman90/pydo.txt",
packages=['pydo']
)