-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 849 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
#!/usr/bin/env python2
from distutils.core import setup
setup(
name='parametric_protein_scaffold_design',
version='0.0.0',
author='Xingjie Pan',
author_email='[email protected]',
url='https://github.com/Kortemme-Lab/parametric_scaffold_design',
packages=[
'parametric_protein_scaffold_design',
],
install_requires=[
'numpy',
'matplotlib',
'docopt',
],
extras_require = {
'weblogo': ['weblogo'],
'cylinder_fitting': ['cylinder_fitting']
},
entry_points={
'console_scripts': [
],
},
description='PyRosetta scripts for parametric protein scaffold design',
long_description=open('README.md').read(),
classifiers=[
'Programming Language :: Python :: 2',
'Intended Audience :: Science/Research',
],
)