-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.37 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
39
40
41
42
43
# -*- coding: utf-8 -*-
# Copyright (C) 2010-2017 Johannes Weißl
# License GPLv3+:
# GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
# This is free software: you are free to change and redistribute it.
# There is NO WARRANTY, to the extent permitted by law
"""A setuptools based setup module."""
from setuptools import setup, find_packages
import muttlearn
setup(
name='muttlearn',
version=muttlearn.__version__,
description='Instead of manually switching profiles, let muttlearn figure it out for you!',
author=u'Johannes Weißl',
author_email='jargon@molb.org',
url='https://github.com/weisslj/muttlearn',
license='GPLv3+',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Communications :: Email',
'Topic :: Utilities',
],
packages=find_packages(exclude=['docs', 'tests']),
entry_points={
'console_scripts': [
'muttlearn=muttlearn:main',
],
},
)