-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (39 loc) · 1.34 KB
/
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
38
39
40
41
"""
Peptide sequence foldability prediciton tool
"""
from setuptools import setup
dependencies = ['numpy >= 1.14.1', 'pandas >= 0.22.0',
'matplotlib >= 2.1.2', 'colorama >= 0.3.9']
setup(
name='prefold',
version='0.1.2',
url='https://github.com/aretas2/preFold',
license='BSD',
author='Aretas Gaspariunas',
author_email='[email protected]',
description='Peptide sequence foldability prediciton tool',
long_description=open('README.md').read(),
packages=['pprefold'],
include_package_data=True,
zip_safe=False,
platforms='any',
test_suite='nose.collector',
tests_require=['nose'],
install_requires=dependencies,
data_files = [('', ['pprefold/datasets/HB_DATA_NORM.DAT', 'pprefold/datasets/PKA_DATA_VOET.DAT'])],
entry_points={
'console_scripts':'prefold=pprefold:main'
},
classifiers=[
'Development Status :: Beta',
'Intended Audience :: Developers :: Scientists',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bioinformatics :: Command-line tool'
]
)