forked from dtolnay/mailingset
-
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) · 712 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 712 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
import sys
from setuptools import setup
# requires configparser for Python 2.x
if sys.version_info[0] < 3:
python2_requires = ['configparser']
else:
python2_requires = []
setup(name='mailingset',
version='0.1.0',
description='A mail server that supports set operations on mailing lists.',
keywords='union intersection difference',
url='https://github.com/dtolnay/mailingset',
license='GNU GPLv3',
packages=['mailingset'],
install_requires=[
'netaddr',
'twisted',
'zope.interface'
] + python2_requires,
test_suite='tests',
tests_require=['nose']
)