forked from jkocherhans/maillib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 863 Bytes
/
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
import os
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README')).read()
setup(
name = "maillib",
version = "0.1.3",
description = "A simplified interface to Python's email package.",
long_description = README,
author = 'Joseph Kocherhans',
author_email = '[email protected]',
license='BSD',
url='http://github.com/jkocherhans/maillib',
packages = ['maillib'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Email'
],
test_suite='maillib.tests',
install_requires=['chardet']
)