From c3fc9b496fa054541b4cfb6aa693ab1ae0a3fcec Mon Sep 17 00:00:00 2001 From: Chris Maffeo <cmaffeo2@illinois.edu> Date: Mon, 17 Jul 2023 16:18:05 -0500 Subject: [PATCH] Fix setup script --- pyproject.toml | 3 +++ setup.cfg | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e65a18f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=46.0", "wheel"] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 9fed948..7132256 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,15 +1,15 @@ [metadata] -name = mrdna -version = file: mrdna/RELEASE-VERSION -description = Multi-resolution DNA simulations +name = arbdmodel +version = file: arbdmodel/RELEASE-VERSION +description = ARBD simulation interface long_description = file: README.md long_description_content_type = text/markdown author = Christopher Maffeo author_email = cmaffeo2@illinois.edu -url = https://gitlab.engr.illinois.edu/tbgl/tools/mrdna, +url = https://gitlab.engr.illinois.edu/tbgl/tools/arbdmodel, project_urls = - gitlab repository = https://gitlab.engr.illinois.edu/tbgl/tools/mrdna, + gitlab repository = https://gitlab.engr.illinois.edu/tbgl/tools/arbdmodel, license = University of Illinois Open Source License license_file = LICENSE @@ -25,7 +25,7 @@ packages = find: install_requires = numpy>=1.14 scipy>=1.1 - appdirs>=1.4 mdanalysis>=2.0.0 + appdirs>=1.4 python_requires = >=3.5 zip_safe = no -- GitLab