Skip to content

Commit 78ede4d

Browse files
committedJul 29, 2015
Renamed to broker-smtp
1 parent 946fdef commit 78ede4d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎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 ["smtpbroker.py"]
5+
CMD ["broker-smtp.py"]
66

77
RUN python setup.py install

‎smtpbroker.py ‎broker-smtp.py

File renamed without changes.

‎docker-compose.yml

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

‎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="smtpbroker",
15+
name="broker-smtp",
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/smtpbroker",
22-
download_url="https://github.com/openknot/smtpbroker/archive/master.zip",
21+
url="https://github.com/openknot/broker-smtp",
22+
download_url="https://github.com/openknot/broker-smtp/archive/master.zip",
2323
classifiers=[
2424
"Development Status :: 3 - Alpha",
2525
"Programming Language :: Python :: 2.7",
2626
],
2727
license="TBA",
28-
keywords="smtp smtpbroker",
28+
keywords="smtp broker",
2929
platforms="POSIX",
3030
packages=find_packages("."),
3131
install_requires=list(parse_requirements("requirements.txt")),
32-
scripts=["smtpbroker.py"],
32+
scripts=["broker-smtp.py"],
3333
zip_safe=False
3434
)

0 commit comments

Comments
 (0)
Please sign in to comment.