You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
355 B
Python
13 lines
355 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='mail2taskwarrior',
|
|
version='1.0.0',
|
|
url='https://github.com/neingeist/mail2taskwarrior',
|
|
author='neingeist',
|
|
author_email='neingeist@bl0rg.net',
|
|
description='add a task to taskwarrior via email',
|
|
scripts=['mail2taskwarrior'],
|
|
install_requires=['taskw >= 1.2.0'],
|
|
)
|