forked from mc-robinson/chain_joiner
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 964 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
from setuptools import setup, find_packages
setup(
name = 'chain_joiner',
packages = ['chain_joiner'], # this must be the same as the name above
version = '0.1',
description = 'A package to automatically fix chain breaks in PDB files using MODELLER',
author = 'Matthew C. Robinson',
author_email = 'matthew.robinson@yale.edu',
url = 'https://github.com/mc-robinson/chain_joiner', # use the URL to the github repo,
keywords = [], # arbitrary keywords
classifiers = [
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
install_requires=['biopandas'],
entry_points={
'console_scripts': [
'join_chains=chain_joiner.chain_joiner:main',
'make_seq=chain_joiner.make_seq:main',
'make_alignment=chain_joiner.make_alignment:main',
'make_model=chain_joiner.make_model:main',
'chain_joiner_online=chain_joiner.run_chain_joiner_online:main'
],
},
)