File: setup.py

package info (click to toggle)
python-imaplib2 2.55-1~bpo8%2B1
  • links: PTS
  • area: main
  • in suites: jessie-backports
  • size: 308 kB
  • sloc: python: 3,233; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
import imaplib2

setup(
    name="imaplib2",
    version=imaplib2.__version__,
    description="A threaded Python IMAP4 client.",
    author="Piers Lauder",
    url="http://sourceforge.net/projects/imaplib2/",
    classifiers=[
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Intended Audience :: Developers",
        "Topic :: Software Development :: Libraries",
        "Topic :: Utilities",
    ],
    py_modules=['imaplib2'],
)