-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 941 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import setuptools
import os
with open("README.rst", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='PyLinearSolver',
version='0.1.4',
author="Ahmed Hendawy, Bernhard Rolle",
author_email="[email protected]",
description="A python interface package for many well known linear solvers libraries in many languages, Julia, C++, etc...",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/AhmedMagdyHendawy/PyLinearSolver",
packages=setuptools.find_packages(),
install_requires=requirements,
project_urls={
"Documentation": "https://pylinearsolver.readthedocs.io/en/latest/index.html",
"Source Code": "https://github.com/AhmedMagdyHendawy/PyLinearSolver",
},
data_files = [("", ["LICENSE"])]
)