-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75fabcb
commit e87df88
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
# # | ||
# RMG - Reaction Mechanism Generator # | ||
# # | ||
# Copyright (c) 2002-2019 Prof. William H. Green ([email protected]), # | ||
# Copyright (c) 2002-2023 Prof. William H. Green ([email protected]), # | ||
# Prof. Richard H. West ([email protected]) and the RMG Team ([email protected]) # | ||
# # | ||
# Permission is hereby granted, free of charge, to any person obtaining a # | ||
|
@@ -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', | ||
|
@@ -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='[email protected]', | ||
url='http://reactionmechanismgenerator.github.io/', | ||
scripts=scripts, | ||
packages=find_packages() | ||
) |