-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
44 lines (43 loc) · 1.72 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
from setuptools import setup, find_namespace_packages
import arpeggio
setup(
name="pdbe-arpeggio",
version=arpeggio.__version__,
description="Arpeggio calculates interatomic contacts based on the rules defined in CREDO.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
project_urls={
"Source code": "https://github.com/PDBeurope/arpeggio",
"Documentation": "https://github.com/PDBeurope/arpeggio",
"Author's repository": "https://github.com/harryjubb/arpeggio",
"Paper": "https://doi.org/10.1016/j.jmb.2016.12.004",
"Web server": "http://biosig.unimelb.edu.au/arpeggioweb/",
},
author="Harry Jubb",
author_email="[email protected]",
license="GNU General Public License v3.0",
keywords="arpeggio PDB contacts bioinformatics mmCIF protein ligand interactions CREDO",
packages=find_namespace_packages(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.9",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
],
zip_safe=False,
include_package_data=True,
install_requires=["gemmi","numpy", "biopython"],
extras_require={
"tests": ["pytest", "pytest-cov"]
},
entry_points={
"console_scripts": ["pdbe-arpeggio=arpeggio.scripts.process_protein_cli:main"]
},
)