Skip to content

Commit 946fdef

Browse files
author
Duncan Hutty
committedJul 28, 2015
renaming to smtpbroker
1 parent 77a22d9 commit 946fdef

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

Diff for: ‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ FROM python:2.7-onbuild
22

33
EXPOSE 25
44

5-
CMD ["smtpd.py"]
5+
CMD ["smtpbroker.py"]
66

77
RUN python setup.py install

Diff for: ‎docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
smtpd:
1+
smtpbroker:
22
build: .
33
ports:
44
- "25:25"

Diff for: ‎setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ def parse_requirements(filename):
1212

1313

1414
setup(
15-
name="broker",
15+
name="smtpbroker",
1616
version="0.0.1",
1717
description="Simple SMTP Broker",
1818
long_description=open("README.rst", "r").read(),
1919
author="James Mills",
2020
author_email="James Mills, prologic at shortcircuit dot net dot au",
21-
url="https://github.com/openknot/broker",
22-
download_url="https://github.com/openknot/broker/archive/master.zip",
21+
url="https://github.com/openknot/smtpbroker",
22+
download_url="https://github.com/openknot/smtpbroker/archive/master.zip",
2323
classifiers=[
2424
"Development Status :: 3 - Alpha",
2525
"Programming Language :: Python :: 2.7",
2626
],
2727
license="TBA",
28-
keywords="smtp broker",
28+
keywords="smtp smtpbroker",
2929
platforms="POSIX",
3030
packages=find_packages("."),
3131
install_requires=list(parse_requirements("requirements.txt")),
32-
scripts=["smtpd.py"],
32+
scripts=["smtpbroker.py"],
3333
zip_safe=False
3434
)

Diff for: ‎smtpd.py renamed to ‎smtpbroker.py

File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.