-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1001 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
29
30
31
32
33
34
from setuptools import setup
from setuptools import find_packages
version = '0.16'
tests_require = ['pytest', 'pytest-cov', 'mock']
setup(
name='eea.mailexpander',
version=version,
description="Sendmail mailer with some LDAP checking",
long_description="""This program acts as a sendmail mailer and allows
sending mails to a certain ldap group (role).""",
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[],
keywords='python ldap sendmail',
author='Eau de Web',
author_email='[email protected]',
url='http://www.eaudeweb.ro/',
license='MPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'roleexpander = eea.mailexpander.expander:main',
]
},
install_requires=[],
tests_require=tests_require,
extras_require={
'testing': tests_require,
}
)