From 63761a8bb8992bad0a361d7dae6132c16252e017 Mon Sep 17 00:00:00 2001 From: Chris Maffeo <cmaffeo2@illinois.edu> Date: Mon, 17 Jul 2023 16:11:03 -0500 Subject: [PATCH] Update setup.cfg --- arbdmodel/RELEASE-VERSION | 1 + setup.cfg | 31 +++++++++++++++++++++++++++++++ setup.py | 32 -------------------------------- 3 files changed, 32 insertions(+), 32 deletions(-) create mode 100644 arbdmodel/RELEASE-VERSION create mode 100644 setup.cfg delete mode 100644 setup.py diff --git a/arbdmodel/RELEASE-VERSION b/arbdmodel/RELEASE-VERSION new file mode 100644 index 0000000..c37d2e9 --- /dev/null +++ b/arbdmodel/RELEASE-VERSION @@ -0,0 +1 @@ +0.1.dev22 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..9fed948 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,31 @@ +[metadata] +name = mrdna +version = file: mrdna/RELEASE-VERSION +description = Multi-resolution DNA simulations +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, +project_urls = + gitlab repository = https://gitlab.engr.illinois.edu/tbgl/tools/mrdna, + +license = University of Illinois Open Source License +license_file = LICENSE +platforms = unix, linux, osx, cygwin, win32 +classifiers = + Programming Language :: Python :: 3, + License :: UIUC Open source License + Operating System :: OS Independent + +[options] +include_package_data = True +packages = find: +install_requires = + numpy>=1.14 + scipy>=1.1 + appdirs>=1.4 + mdanalysis>=2.0.0 +python_requires = >=3.5 +zip_safe = no diff --git a/setup.py b/setup.py deleted file mode 100644 index a0ff928..0000000 --- a/setup.py +++ /dev/null @@ -1,32 +0,0 @@ -import setuptools - -with open("README.md", "r") as fh: - long_description = fh.read() - -with open("LICENSE", "r") as fh: - license = fh.read() - -from arbdmodel.version import get_version - -setuptools.setup( - name="arbdmodel", - version=get_version(), - author="Christopher Maffeo", - author_email="cmaffeo2@illinois.edu", - description="Python interface to ARBD simulation engine", - license=license, - long_description=long_description, - long_description_content_type="text/markdown", - url="https://gitlab.engr.illinois.edu/tbgl/tools/arbdmodel", - packages=setuptools.find_packages(), - include_package_data=True, - install_requires=( - 'numpy>=1.14', - 'appdirs>=1.4' - ), - classifiers=( - "Programming Language :: Python :: 3", - "License :: UIUC Open source License", - "Operating System :: OS Independent", - ), -) -- GitLab