-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (28 loc) · 1012 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
from setuptools import setup
__version__ = '1.1.0'
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name = 'pystapler',
version = __version__,
author = 'Adam Moyer',
author_email = '[email protected]',
description = 'A Motif Hash Based Method for Matching Staples/Crosslinks into Peptides and Proteins',
packages = ['stapler'],
package_dir={'stapler' : 'stapler'},
package_data={'stapler' : ['hash_tables']},
install_requires = ['pyrosetta', 'xbin', 'numpy', 'getpy'],
include_package_data=True,
zip_safe = False,
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/atom-moyer/stapler',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: C++',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix'
],
)