Skip to content

Commit

Permalink
RMG-database version 3.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sevyharris authored and rwest committed May 30, 2023
1 parent 75fabcb commit e87df88
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# #
# RMG - Reaction Mechanism Generator #
# #
# Copyright (c) 2002-2019 Prof. William H. Green (whgreen@mit.edu), #
# Copyright (c) 2002-2023 Prof. William H. Green (whgreen@mit.edu), #
# Prof. Richard H. West (r.west@neu.edu) and the RMG Team (rmg_dev@mit.edu) #
# #
# Permission is hereby granted, free of charge, to any person obtaining a #
Expand All @@ -29,10 +29,11 @@
###############################################################################

try:
from distutils.core import setup
from distutils.extension import Extension
from setuptools import setup
from setuptools import Extension
from setuptools import find_packages
except ImportError:
print('The distutils package is required to build or install RMG Py.')
print('The setuptools package is required to build or install RMG Py.')

scripts = [
'evansPolanyi.py',
Expand All @@ -45,10 +46,11 @@
# Initiate the installation and/or build
setup(
name='RMG-database',
version='3.1.0',
version='3.2.0',
description='Reaction Mechanism Generator Database',
author='William H. Green and the RMG Team',
author_email='rmg_dev@mit.edu',
url='http://reactionmechanismgenerator.github.io/',
scripts=scripts,
packages=find_packages()
)

0 comments on commit e87df88

Please sign in to comment.