-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 874 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 874 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 setup, find_packages
import re
__version__ = re.findall(
r"""__version__ = ["']+([0-9\.]*)["']+""",
open("prefoil/__init__.py").read(),
)[0]
with open("doc/requirements.txt") as f:
docs_require = f.read().splitlines()
setup(
name="prefoil",
version=__version__,
description="This repo contains basic tools for working with airfoils, using pyspline as the backend.",
author="",
author_email="",
url="https://github.com/mdolab/prefoil",
packages=find_packages(),
python_requires=">=3.11",
install_requires=["numpy>=1.25", "scipy>=1.11", "pyspline>=1.1.0"],
extras_require={
"plotting": ["matplotlib"],
"testing": ["mdolab-baseclasses>=1.4", "testflo"],
"docs": docs_require,
},
classifiers=["Operating System :: OS Independent", "Programming Language :: Python"],
)