25 lines
619 B
Python
25 lines
619 B
Python
from setuptools import setup
|
|
|
|
|
|
def get_version(module):
|
|
version = ""
|
|
with open(module) as f:
|
|
for line in f:
|
|
if "__version__" in line:
|
|
version = line.split("=")[-1].strip("' \n\t")
|
|
break
|
|
return version
|
|
|
|
|
|
setup(
|
|
name="mdevaluate",
|
|
description="Collection of python utilities for md simulations",
|
|
author_email="sebastian.kloth@pkm.tu-darmstadt.de",
|
|
packages=[
|
|
"mdevaluate",
|
|
],
|
|
entry_points={"console_scripts": ["index-xtc = mdevaluate.cli:run"]},
|
|
version="23.6",
|
|
requires=["mdanalysis", "pandas", "dask", "pathos"],
|
|
)
|