Skip to content

Commit 6a0e122

Browse files
committed
Provide a setup.py
1 parent 4129b2e commit 6a0e122

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed
File renamed without changes.
File renamed without changes.

setup.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env python
2+
3+
from setuptools import setup
4+
5+
setup(
6+
name='cleanup-maildir',
7+
version='0.3.2',
8+
python_requires='>=3.6',
9+
install_requires=['pygraph @ git+https://github.com/jciskey/pygraph@master'],
10+
description='Script for cleaning up mails in Maildir folders based on arival date',
11+
author='Nathaniel W. Turner',
12+
author_email='nate@houseofnate.net',
13+
maintainer='Emanuel Haupt',
14+
maintainer_email='ehaupt@critical.ch',
15+
url='https://github.com/ehaupt/cleanup-maildir',
16+
scripts=['scripts/cleanup-maildir'],
17+
)

0 commit comments

Comments
 (0)