Skip to content

Commit

Permalink
remove dtr
Browse files Browse the repository at this point in the history
  • Loading branch information
zkagin committed Sep 6, 2023
1 parent 6f6d83d commit b459af5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


##########################
VERSION = "9000.9.9"
VERSION = "9000.9.10"
ISRELEASED = False
__version__ = VERSION
##########################
Expand Down Expand Up @@ -128,17 +128,17 @@ def format_extensions():
'mdtraj/formats/binpos/'],
extra_compile_args=compiler_args)

dtr = Extension('mdtraj.formats.dtr',
sources=['mdtraj/formats/dtr/src/dtrplugin.cxx',
'mdtraj/formats/dtr/dtr.pyx'],
include_dirs=['mdtraj/formats/dtr/include/',
'mdtraj/formats/dtr/'],
define_macros=[('DESRES_READ_TIMESTEP2', 1)],
language='c++',
extra_compile_args=compiler_args,
libraries=extra_cpp_libraries)

return [xtc, trr, tng, dcd, binpos, dtr]
# dtr = Extension('mdtraj.formats.dtr',
# sources=['mdtraj/formats/dtr/src/dtrplugin.cxx',
# 'mdtraj/formats/dtr/dtr.pyx'],
# include_dirs=['mdtraj/formats/dtr/include/',
# 'mdtraj/formats/dtr/'],
# define_macros=[('DESRES_READ_TIMESTEP2', 1)],
# language='c++',
# extra_compile_args=compiler_args,
# libraries=extra_cpp_libraries)

return [xtc, trr, tng, dcd, binpos]


def rmsd_extensions():
Expand Down

0 comments on commit b459af5

Please sign in to comment.