forked from zedshaw/lamson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 731 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'package_data': {
'lamson': ['data/prototype.zip']
},
'description': 'Lamson is a modern Pythonic mail server built like a web application server.',
'author': 'Zed A. Shaw',
'url': 'http://pypi.python.org/pypi/lamson',
'download_url': 'http://pypi.python.org/pypi/lamson',
'author_email': 'zedshaw@zedshaw.com',
'version': '1.3.4',
'scripts': ['bin/lamson'],
'install_requires': ['chardet', 'jinja2', 'mock', 'nose', 'python-daemon',
'python-modargs'],
'packages': ['lamson',
'lamson.handlers'],
'name': 'lamson'
}
setup(**config)