-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.35 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
43
44
45
from setuptools import setup, find_packages
VERSION = "0.1.0"
DESCRIPTION = "A python package to study conserved protein interaction networks"
LONG_DESCRIPTION = """
This repository contains the work done for the publication titled:
"Key Interaction Networks: Identifying Evolutionarily Conserved Non-Covalent
Interaction Networks Across Protein Families".
In this work, we studied the non-covalent interaction networks of all unique
class A beta-lactamases structures to identify a network of evolutionarily
conserved interactions present throughout the family.
"""
setup(
name="key-interactions-network",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author="Dariia Yehorova, Rory Crean",
author_email="rory.crean@kemi.uu.se", # uploaded to PyPI.
url="https://github.com/kamerlinlab/KIN",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"notebook",
"scikit-learn",
"scipy",
"numpy",
"pandas",
"lxml",
"MDAnalysis",
"matplotlib",
"plotly",
"kaleido",
],
extras_require={
"dev": ["pytest", "black", "setuptools", "twine"],
},
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)