-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.14 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.14 KB
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='alphaspace2',
version='0.1.2',
description='Protein topographical mapping tool',
long_description="""
AlphaSpace2 is a surface topographical mapping tool.
Based on the algorithm of original AlphaSpace published
[here](http://pubs.acs.org/doi/abs/10.1021/acs.jcim.5b00103),
the alphaspace2 is a rewritten implementation with multiple new features
are added for a more friendly user interface and performance boost.
""",
url='http://github.com/lenhsherr/alphaspace2',
author='Haotian Li',
author_email='hl2368@nyu.edu',
license='gpl-3.0',
packages=['alphaspace2'],
scripts=['bin/alphaspace2'],
include_package_data=True,
zip_safe=False,
install_requires=['mdtraj',
'cython',
'configargparser',
'scipy',
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)