-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 945 Bytes
/
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
from setuptools import setup, find_packages
VERSION = "0.4.1"
DESCRIPTION = "Python package for MD simulation analysis"
LONG_DESCRIPTION = """
A python package to identify the key molecular interactions that regulate any conformational change."""
setup(
name="KIF",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author="Rory Crean",
author_email="rory.crean@kemi.uu.se",
url="https://github.com/kamerlinlab/KIF",
packages=find_packages(include=["key_interactions_finder"]),
install_requires=[
"pandas",
"numpy",
"scikit-learn",
"scipy",
"xgboost",
"catboost",
"MDAnalysis",
"MDAnalysisTests",
"gdown",
],
package_data={"key_interactions_finder": ["model_params/*.json"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)