Skip to content
Snippets Groups Projects
Commit 63761a8b authored by cmaffeo2's avatar cmaffeo2
Browse files

Update setup.cfg

parent c4e3578e
No related branches found
No related tags found
No related merge requests found
0.1.dev22
[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
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",
),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment