File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
3+ import os
4+
35from setuptools import setup
46
7+
8+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
9+ long_description = fh .read ()
10+
511setup (
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" ,
111516+ 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)
You can’t perform that action at this time.
0 commit comments