Add .swp files to .gitignore

This commit is contained in:
altffour 2019-10-12 13:00:28 +03:00
parent b333658610
commit c27cdbb2a1
2 changed files with 23 additions and 0 deletions

3
.gitignore vendored
View File

@ -102,3 +102,6 @@ venv.bak/
# mypy
.mypy_cache/
# Misc
*.swp

20
setup.py Normal file
View File

@ -0,0 +1,20 @@
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='GraphSolver',
version='0.0.1',
description='An application for solving linear\quadratic graphs.',
long_description=readme,
author='altf_four',
author_email='ayhamaboualfadl@gmail.com',
url='https://github.com/realaltffour/GraphSolver',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)