Skip to content

Commit e87df88

Browse files
sevyharrisrwest
authored andcommitted
RMG-database version 3.2.0 release
1 parent 75fabcb commit e87df88

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# #
66
# RMG - Reaction Mechanism Generator #
77
# #
8-
# Copyright (c) 2002-2019 Prof. William H. Green (whgreen@mit.edu), #
8+
# Copyright (c) 2002-2023 Prof. William H. Green (whgreen@mit.edu), #
99
# Prof. Richard H. West (r.west@neu.edu) and the RMG Team (rmg_dev@mit.edu) #
1010
# #
1111
# Permission is hereby granted, free of charge, to any person obtaining a #
@@ -29,10 +29,11 @@
2929
###############################################################################
3030

3131
try:
32-
from distutils.core import setup
33-
from distutils.extension import Extension
32+
from setuptools import setup
33+
from setuptools import Extension
34+
from setuptools import find_packages
3435
except ImportError:
35-
print('The distutils package is required to build or install RMG Py.')
36+
print('The setuptools package is required to build or install RMG Py.')
3637

3738
scripts = [
3839
'evansPolanyi.py',
@@ -45,10 +46,11 @@
4546
# Initiate the installation and/or build
4647
setup(
4748
name='RMG-database',
48-
version='3.1.0',
49+
version='3.2.0',
4950
description='Reaction Mechanism Generator Database',
5051
author='William H. Green and the RMG Team',
5152
author_email='rmg_dev@mit.edu',
5253
url='http://reactionmechanismgenerator.github.io/',
5354
scripts=scripts,
55+
packages=find_packages()
5456
)

0 commit comments

Comments
 (0)