-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
31 lines (29 loc) · 1.12 KB
/
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
import os
from setuptools import setup, find_packages
ver_file = os.path.join('blockmeshbuilder', 'version.py')
variables = {}
exec(open(ver_file).read(), variables)
setup(
name='blockmeshbuilder',
version=variables['__version__'],
description='Concisely define and manipulate 3D block structures to produce '
'hexahedral block-structured meshes for CFD.',
long_description=open('README.md', 'rt').read(),
author='Nolan Dyck',
url='https://github.com/NauticalMile64/blockmeshbuilder',
packages=find_packages(),
package_dir={'blockmeshbuilder': 'blockmeshbuilder'},
install_requires=['numpy', 'shapely>=2.0.0'],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics"])