Skip to content

Commit b03159c

Browse files
author
Alan O'Cais
committed
Tweak setup.py
1 parent c09e895 commit b03159c

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
#!/usr/bin/env python
22

3+
import os
4+
35
from setuptools import setup
46

7+
8+
with open("README.md", "r", encoding="utf-8") as fh:
9+
long_description = fh.read()
10+
511
setup(
612
name="amdahl",
713
version="1.0",
8-
python_requires=">=3",
9-
description="A pseudo-application that can be used as a black box to reproduce Amdahl's Law",
1014
author="Alan O'Cais",
1115
author_email="[email protected]",
16+
python_requires=">=3",
17+
description="A pseudo-application that can be used as a black box to reproduce Amdahl's Law",
18+
long_description=long_description,
19+
long_description_content_type="text/markdown",
1220
url="https://github.com/ocaisa/amdahl",
1321
packages=["amdahl"],
1422
install_requires=["mpi4py"],
1523
entry_points={
16-
"console_scripts": ["amdahl=amdahl.amdahl:amdahl"],
24+
"console_scripts": ["amdahl = amdahl.amdahl:amdahl"],
1725
},
1826
)

0 commit comments

Comments
 (0)