1515trajectories that can be used for workshops and extended tests.
1616"""
1717
18- from __future__ import print_function
1918from setuptools import setup , find_packages
2019import versioneer
2120
@@ -117,24 +116,17 @@ def dynamic_author_list():
117116 'Operating System :: MacOS :: MacOS X' ,
118117 'Operating System :: Microsoft :: Windows ' ,
119118 'Programming Language :: Python' ,
120- 'Programming Language :: Python :: 2' ,
121- 'Programming Language :: Python :: 2.7' ,
122119 'Programming Language :: Python :: 3' ,
123- 'Programming Language :: Python :: 3.6' ,
124- 'Programming Language :: Python :: 3.7' ,
125- 'Programming Language :: Python :: 3.8' ,
126120 'Programming Language :: Python :: 3.9' ,
121+ 'Programming Language :: Python :: 3.10' ,
122+ 'Programming Language :: Python :: 3.11' ,
123+ 'Programming Language :: Python :: 3.12' ,
127124 'Topic :: Scientific/Engineering' ,
128125 'Topic :: Scientific/Engineering :: Bio-Informatics' ,
129126 'Topic :: Scientific/Engineering :: Chemistry' ,
130127 'Topic :: Software Development :: Libraries :: Python Modules' ,
131128 ]
132129
133- # Python 2.7 compatibility
134- test_requirements = ['pytest' , 'pytest-mock' ]
135- if sys .version_info .major < 3 :
136- test_requirements .append ("pathlib2" )
137-
138130 setup (name = 'MDAnalysisData' ,
139131 version = versioneer .get_version (),
140132 cmdclass = versioneer .get_cmdclass (),
@@ -157,10 +149,8 @@ def dynamic_author_list():
157149 packages = find_packages (),
158150 package_dir = {'MDAnalysisData' : 'MDAnalysisData' },
159151 package_data = {'MDAnalysisData' : ['descr/*.rst' ]},
160- install_requires = ['six' ,
161- 'setuptools' ,
162- 'tqdm' ,
163- ],
164- tests_require = test_requirements ,
152+ setup_requires = ['setuptools' ],
153+ install_requires = ['tqdm' ],
154+ tests_require = ['pytest' , 'pytest-mock' ],
165155 zip_safe = True ,
166156 )
0 commit comments