-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""TODO: Add copyright information.
"""
from setuptools import setup, find_packages
from pydna_epbd.version import __version__
# add readme
with open("README.rst", "r") as f:
LONG_DESCRIPTION = f.read()
# add dependencies
with open("requirements.txt", "r") as f:
INSTALL_REQUIRES = f.read().strip().split("\n")
setup(
name="pydna_epbd",
version=__version__,
author="Anowarul Kabir, Manish Bhattarai, Kim Rasmussen, Amarda Shehu, Anny Usheva, Alan Bishop, Boian S. Alexandrov",
author_email="[email protected]",
description="pyDNA-EPBD: A Python-based Implementation of the Extended Peyrard-Bishop-Dauxois Model for DNA Breathing Dynamics Simulation",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
package_dir={"pydna_epbd": "pydna_epbd"},
platforms=["Linux", "Mac", "Windows"],
include_package_data=True,
setup_requires=[
"argparse",
"numpy",
"joblib",
],
url="https://github.com/lanl/pyDNA_EPBD",
packages=find_packages(),
classifiers=[
"Development Status :: Beta",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
install_requires=INSTALL_REQUIRES,
python_requires=">=3.9.0",
license="License :: BSD3 License",
)