Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
missing hdrs
Browse files Browse the repository at this point in the history
  • Loading branch information
marscher committed Aug 30, 2015
1 parent aad1f69 commit b1b7fcc
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 9 deletions.
26 changes: 17 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@

#!/usr/bin/env python

# This file is part of MSMTools.
#
# Copyright (c) 2015, 2014 Computational Molecular Biology Group, Freie Universitaet Berlin (GER)
#
# MSMTools is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

"""EMMA: Emma's Markov Model Algorithms
EMMA is an open source collection of algorithms implemented mostly in
Expand Down Expand Up @@ -253,14 +269,6 @@ def run(self):
# only require numpy and extensions in case of building/installing
metadata['ext_modules'] = lazy_cythonize(extensions)

# add argparse to runtime deps if python version is 2.6
if sys.version_info[:2] == (2, 6):
metadata['install_requires'] += ['argparse']

# include ipython notebooks. Will be installed directly in site-packages
#metadata['packages'] += ['pyemma-ipython']
#metadata['include_package_data'] = True

try:
setup(**metadata)
except VersionConflict as ve:
Expand Down
17 changes: 17 additions & 0 deletions setup_util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@

# This file is part of MSMTools.
#
# Copyright (c) 2015, 2014 Computational Molecular Biology Group, Freie Universitaet Berlin (GER)
#
# MSMTools is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

"""
utility functions for python setup
"""
Expand Down

0 comments on commit b1b7fcc

Please sign in to comment.