Skip to content

Commit

Permalink
Prepare release of v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sayerhs committed Mar 15, 2024
1 parent 0871566 commit 0a5b3f3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
recursive-include caelus/templates *
include caelus/config/default_config.yaml
include caelus/config/default_config.yaml
include caelus/py.typed
24 changes: 14 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@
]


def parse_reqs_file(fname: str):
"""Parse requirements file and return dependencies"""
with open(fname, 'r') as fh:
return [line.strip() for line in fh]


install_requires = parse_reqs_file('requirements.txt')


setup(
name="caelus",
version=VERSION,
Expand Down Expand Up @@ -65,5 +56,18 @@ def parse_reqs_file(fname: str):
caelus_sim=caelus.scripts.caelus_sim:main
""",
python_requires='>=3.10',
install_requires=install_requires,
install_requires=[
"pip",
"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",
],
)

0 comments on commit 0a5b3f3

Please sign in to comment.