GraphSolver/setup.py

20 lines
502 B
Python
Raw Permalink Normal View History

2019-10-12 10:00:28 +00:00
from setuptools import setup, find_packages
with open('README.md') as f:
2019-10-12 10:00:28 +00:00
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.',
2019-10-12 10:00:28 +00:00
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'))
)