Fix file names in setup.py and typo in README

Fixes: #10
This commit is contained in:
omikhailk 2019-10-16 03:37:59 +05:00
parent 1f2b59548c
commit a4ab06083c
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
# GraphSolver
An application for solving linear, quadratic graphs.
An application for solving linear/quadratic graphs.

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
with open('README.rst') as f:
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
@ -9,7 +9,7 @@ with open('LICENSE') as f:
setup(
name='GraphSolver',
version='0.0.1',
description='An application for solving linear\quadratic graphs.',
description='An application for solving linear/quadratic graphs.',
long_description=readme,
author='altf_four',
author_email='ayhamaboualfadl@gmail.com',