File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 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 #
2929###############################################################################
3030
3131try :
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
3435except 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
3738scripts = [
3839 'evansPolanyi.py' ,
4546# Initiate the installation and/or build
4647setup (
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)
You can’t perform that action at this time.
0 commit comments