Skip to content

Commit

Permalink
renaming to smtpbroker
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan Hutty committed Jul 28, 2015
1 parent 77a22d9 commit 946fdef
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -2,6 +2,6 @@ FROM python:2.7-onbuild

EXPOSE 25

CMD ["smtpd.py"]
CMD ["smtpbroker.py"]

RUN python setup.py install
2 changes: 1 addition & 1 deletion docker-compose.yml
@@ -1,4 +1,4 @@
smtpd:
smtpbroker:
build: .
ports:
- "25:25"
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -12,23 +12,23 @@ def parse_requirements(filename):


setup(
name="broker",
name="smtpbroker",
version="0.0.1",
description="Simple SMTP Broker",
long_description=open("README.rst", "r").read(),
author="James Mills",
author_email="James Mills, prologic at shortcircuit dot net dot au",
url="https://github.com/openknot/broker",
download_url="https://github.com/openknot/broker/archive/master.zip",
url="https://github.com/openknot/smtpbroker",
download_url="https://github.com/openknot/smtpbroker/archive/master.zip",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
],
license="TBA",
keywords="smtp broker",
keywords="smtp smtpbroker",
platforms="POSIX",
packages=find_packages("."),
install_requires=list(parse_requirements("requirements.txt")),
scripts=["smtpd.py"],
scripts=["smtpbroker.py"],
zip_safe=False
)
File renamed without changes.

0 comments on commit 946fdef

Please sign in to comment.