-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
72 lines (65 loc) · 1.89 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- coding: utf-8 -*-
"""Caelus Python Library
This python package provides a scriptable interface to Caelus Computational
Mechanics Library (CML).
"""
from setuptools import setup, find_packages
VERSION = "4.0.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
setup(
name="py-caelus",
version=VERSION,
url="https://sayerhs.github.io/cpl/",
license="Apache License, Version 2.0",
description="Caelus Python Library",
long_description=__doc__,
author="Shreyas Ananthan, Chris Sideroff",
maintainer="Shreyas Ananthan, Chris Sideroff",
include_package_data=True,
platforms="any",
classifiers=classifiers,
packages=[
'caelus',
'caelus.build',
'caelus.config',
'caelus.fvmesh',
'caelus.io',
'caelus.post',
'caelus.post.funcobj',
'caelus.run',
'caelus.scripts',
'caelus.utils',
],
entry_points="""
[console_scripts]
caelus=caelus.scripts.caelus:main
caelus_tutorials=caelus.scripts.caelus_tutorials:main
caelus_sim=caelus.scripts.caelus_sim:main
""",
python_requires='>=3.10',
install_requires=[
"six>=1.16.0",
"numpy>=1.26.0",
"scipy>=1.11.0",
"pandas>=2.1.0",
"matplotlib>=3.8.0",
"PyYAML>=6.0.0",
"pytz",
"Jinja2>=3.0.0",
"ply>=3.11",
"vtk>=9.2.0",
"pyvista>=0.42",
],
)