Commit e5d42b1d authored by Kaitlyn Lee's avatar Kaitlyn Lee Committed by jlaura
Browse files

Fixed extension of the README file and typo in script name (#299)

* Fixed extension of the README file

* Fixed typo in script name
parent 04ced131
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
import autocnet
from autocnet.examples import available
#Grab the README.md for the long description
with open('README.rst', 'r') as f:
with open('README.md', 'r') as f:
    long_description = f.read()

def setup_package():
@@ -31,7 +31,7 @@ def setup_package():
        packages=find_packages(),
        include_package_data=True,
        package_data={'autocnet' : list(examples)},
        scripts=['bin/acn_submit', 'bin/anc_overlaps'],
        scripts=['bin/acn_submit', 'bin/acn_overlaps'],
        zip_safe=False,
        install_requires=[],
        classifiers=[