-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (35 loc) · 909 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
34
35
36
37
#!/usr/bin/env python3
from distutils.core import setup
setup(
name='ProteinFeatureAnalyzer',
version='0.0.0',
author='Xingjie Pan',
author_email='[email protected]',
url='https://github.com/Kortemme-Lab/protein_feature_analysis',
packages=[
'ProteinFeatureAnalyzer',
],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'biopython',
'networkx',
'docopt',
'pandas',
'flufl.lock',
'sklearn',
'pytest',
'cylinder_fitting',
],
entry_points={
'console_scripts': [
],
},
description='ProteinFeatureAnalyzer extracts, analyzes and visualizes features from protein structures.',
long_description=open('README.rst').read(),
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
],
)