-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import setuptools
with open('README.md') as readme:
long_desc = readme.read()
setuptools.setup(
name='pymap-copy',
version='1.0.2',
python_requires='>=3.6',
scripts=['pymap-copy.py'],
author='Lukas Schulte-Tickmann',
author_email='[email protected]',
description='Copy and transfer IMAP mailboxes',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/Schluggi/pymap-copy',
project_urls={
'Source': 'https://github.com/Schluggi/pymap-copy',
'Tracker': 'https://github.com/Schluggi/pymap-copy/issues',
'Funding': 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KPG2MY37LCC24&source=url'
},
packages=setuptools.find_packages(),
py_modules=['imapidle', 'utils'],
install_requires=[
'chardet',
'IMAPClient',
'six'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Email :: Post-Office :: IMAP',
'Topic :: Utilities'
]
)