-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 710 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 710 Bytes
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
26
27
28
from setuptools import find_packages, setup
setup(
name="numeric",
description="""Implementing algorithms from 'Numerical Analysis' by
Richard L. Burden and J. Douglas Faires (9th Edition) in
C++ with Python bindings.""",
version="0.1.0",
author="Ben Whewell",
author_email="ben.whewell@pm.me",
url="https://github.com/bwhewe-13/NumericalAnalysis",
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"pybind11",
],
extras_require={
"dev": [
"pytest>=6.0",
"pytest-cov",
"black",
"isort",
"flake8",
"pre-commit",
]
},
)