Skip to content

Commit

Permalink
Merge pull request #151 from brittonsmith/pygrackle
Browse files Browse the repository at this point in the history
Update pygrackle version to 1.0.0 and add metadata.
  • Loading branch information
brittonsmith committed May 9, 2023
2 parents 25b96ad + 484074a commit 19aa129
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/python/pygrackle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
# software.
########################################################################

__version__ = "1.0.0"

from .fluid_container import \
FluidContainer

Expand Down
26 changes: 24 additions & 2 deletions src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
libraries=["grackle"],
define_macros=[
("CONFIG_BFLOAT_8", True),
("LARGE_INTS", True),
],
),
]
Expand Down Expand Up @@ -55,8 +54,31 @@ def configuration(parent_package='', top_path=None):

setup(
name="pygrackle",
version="0.1",
version="1.0.0",
description="A wrapper for the Grackle chemistry library",
keywords=["simulation", "chemistry", "cooling", "astronomy", "astrophysics"],
url="https://github.com/grackle-project/grackle",
project_urls={
'Homepage': 'https://github.com/grackle-project/grackle',
'Documentation': 'https://grackle.readthedocs.io/',
'Source': 'https://github.com/grackle-project/grackle',
'Tracker': 'https://github.com/grackle-project/grackle/issues'
},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(),
setup_requires=[
'numpy',
Expand Down

0 comments on commit 19aa129

Please sign in to comment.