Skip to content

Commit

Permalink
Add PyWin32 as a Windows dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlee committed Mar 8, 2016
1 parent 241880a commit 9565008
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Expand Up @@ -12,6 +12,14 @@
# line is added.
os.environ["MPLCONFIGDIR"] = "."


install_requires=['numpy>=1.8.1',
'scipy>=0.13.3',
'sympy>=0.7.4.1']

if os.name == 'nt':
install_requires.append('PyWin32>=219')

setup(
name='pydy',
version=__version__,
Expand All @@ -23,10 +31,7 @@
keywords="multibody dynamics",
license='LICENSE.txt',
packages=find_packages(),
install_requires=['numpy>=1.8.1',
'scipy>=0.13.3',
'sympy>=0.7.4.1',
],
install_requires=install_requires,
extras_require={'doc': ['sphinx', 'numpydoc'],
'codegen': ['Cython>=0.20.1',
'Theano>=0.7.0'],
Expand Down

0 comments on commit 9565008

Please sign in to comment.