mdevaluate/setup.py

25 lines
596 B
Python
Raw Normal View History

2022-04-20 12:08:38 +00:00
from setuptools import setup
def get_version(module):
2023-06-27 08:26:23 +00:00
version = ""
2022-04-20 12:08:38 +00:00
with open(module) as f:
for line in f:
2023-06-27 08:26:23 +00:00
if "__version__" in line:
version = line.split("=")[-1].strip("' \n\t")
2022-04-20 12:08:38 +00:00
break
return version
setup(
2023-06-27 08:26:23 +00:00
name="mdevaluate",
description="Collection of python utilities for md simulations",
author_email="niels.mueller@physik.tu-darmstadt.de",
packages=[
"mdevaluate",
],
entry_points={"console_scripts": ["index-xtc = mdevaluate.cli:run"]},
version="23.6",
requires=["numpy", "scipy"],
2022-04-20 12:08:38 +00:00
)