-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (31 loc) · 949 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
26
27
28
29
30
31
32
33
from setuptools import find_packages
from setuptools import setup
with open("fluidspylib/README.md", "r") as f:
long_description = f.read()
setup(
name="fluidspy",
version="1.0.1",
description="Implementation of CFD methods in Python",
package_dir={"": "fluidspylib"},
packages=find_packages(where="fluidspylib"),
long_description=long_description,
long_description_content_type="text/markdown",
author="A V Aniketh",
author_email="[email protected]",
url="https://github.com/AVAniketh0905/fluidspy.git",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
"numpy>=1.24.0",
"typing>=3.7",
"scipy>=1.11.4",
"matplotlib>=3.8.2",
],
extras_require={
"dev": ["twine>=4.0.0", "pytest", "ruff", "black"],
},
python_requires=">=3.10",
)