21 from os import path |
21 from os import path |
22 |
22 |
23 here = path.abspath(path.dirname(__file__)) |
23 here = path.abspath(path.dirname(__file__)) |
24 |
24 |
25 # Get the long description from the README file |
25 # Get the long description from the README file |
26 with open(path.join(here, 'README'), encoding='utf-8') as f: |
26 with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
27 long_description = f.read() |
27 long_description = f.read() |
28 |
28 |
29 |
29 |
30 setup(name="pygpibtoolkit", |
30 setup(name="pygpibtoolkit", |
31 description='A Python 3 toolkit for GPIB', |
31 description='A Python 3 toolkit for GPIB', |