-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.23 KB
/
setup.py
File metadata and controls
32 lines (28 loc) · 1.23 KB
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="scalcs",
version="0.5.0",
description="Q-matrix calculations of ion channel propeties",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/remislp/SCALCS", # mature version will be moved to https://github.com/DCPROGS/SCALCS
author="Remis Lape",
author_email="remis.lp@gmail.com",
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
],
keywords="scalcs, ion-channels, matrix",
packages=find_packages(where="src"), # Required
python_requires=">=3.10, <4",
install_requires=["numpy", "matplotlib", "pandas", "scipy", "PyQt5", "pyyaml"],
)