We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5eee62 commit dba2b7eCopy full SHA for dba2b7e
setup.py
@@ -29,10 +29,11 @@
29
###############################################################################
30
31
try:
32
- from distutils.core import setup
33
- from distutils.extension import Extension
+ from setuptools import setup
+ from setuptools import Extension
34
+ from setuptools import find_packages
35
except ImportError:
- 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.')
37
38
scripts = [
39
'evansPolanyi.py',
@@ -51,4 +52,5 @@
51
52
author_email='rmg_dev@mit.edu',
53
url='http://reactionmechanismgenerator.github.io/',
54
scripts=scripts,
55
+ packages=find_packages()
56
)
0 commit comments