Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 21, 2014
1 parent 820c1d6 commit 924e598
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
18 changes: 13 additions & 5 deletions setup.py
Expand Up @@ -17,24 +17,32 @@
# Zope Toolkit policies as described by this documentation.
##############################################################################
"""Setup for zope.sendmail package"""
import os
from setuptools import setup, find_packages

tests_require=[
'zope.security',
'zope.testing',
]


def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

long_description=(
read('README.rst')
+ '\n' +
read('CHANGES.rst')
)

setup(name='zope.sendmail',
version='4.0.0a3.dev0',
version='4.0.0.dev0',
url='http://pypi.python.org/pypi/zope.sendmail',
license='ZPL 2.1',
description='Zope sendmail',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description='\n\n'.join([
open('README.txt').read(),
open('CHANGES.txt').read(),
]),
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand Down

0 comments on commit 924e598

Please sign in to comment.