Skip to content

Commit

Permalink
Renamed to broker-smtp
Browse files Browse the repository at this point in the history
  • Loading branch information
prologic committed Jul 29, 2015
1 parent 946fdef commit 78ede4d
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 ["smtpbroker.py"]
CMD ["broker-smtp.py"]

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


setup(
name="smtpbroker",
name="broker-smtp",
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/smtpbroker",
download_url="https://github.com/openknot/smtpbroker/archive/master.zip",
url="https://github.com/openknot/broker-smtp",
download_url="https://github.com/openknot/broker-smtp/archive/master.zip",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
],
license="TBA",
keywords="smtp smtpbroker",
keywords="smtp broker",
platforms="POSIX",
packages=find_packages("."),
install_requires=list(parse_requirements("requirements.txt")),
scripts=["smtpbroker.py"],
scripts=["broker-smtp.py"],
zip_safe=False
)

0 comments on commit 78ede4d

Please sign in to comment.