-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.27 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.27 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
33
34
35
36
37
38
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="PKPy",
version="0.1.0",
packages=find_packages(),
install_requires=[
"numpy>=1.20.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"numba>=0.54.0",
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
"scikit-learn>=0.24.0",
],
author="Hyunseung Kong",
author_email="hskong@snu.ac.kr",
description="Simple and Fast pharmacokinetic modeling package in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gumgo91/pkpy",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
python_requires=">=3.8",
keywords="pharmacokinetics, modeling, simulation, clinical-trials",
)