-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 919 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 919 Bytes
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
setup(
name="PDBminer",
version="1.0.0",
description="Tool for mining PDB data",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Kristine Degn",
author_email="krde@dtu.com",
url="https://github.com/ELELAB/PDBminer",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"biopython==1.83",
"matplotlib==3.8.3",
"networkx==3.2.1",
"numpy==1.26.4",
"pandas==2.2.1",
"PyYAML==6.0.1",
"requests==2.31.0",
"seaborn==0.13.2",
],
entry_points={
"console_scripts": [
"PDBminer=PDBminer.PDBminer:main",
"PDBminer2coverage=PDBminer.PDBminer2coverage:main",
"PDBminer2network=PDBminer.PDBminer2network:main",
],
},
)