-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·55 lines (51 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
# Read a __version__
exec(open('alfpy/version.py').read())
# Long description
fh = open('README.rst')
long_description = fh.read()
fh.close()
setup(
name='alfpy',
version=__version__,
description="Alignment-free package to compare DNA/RNA/protein sequences (bioinformatics).",
long_description=long_description,
author='Andrzej Zielezinski',
keywords='alignment-free bioinformatics sequence DNA protein homology phylogeny',
license="MIT",
author_email='[email protected]',
url="http://www.combio.pl/alfree",
packages=['alfpy', 'alfpy.utils', 'alfpy.utils.data'],
#setup_requires=["numpy"],
install_requires=["numpy"],
scripts=[
'bin/calc_bbc.py',
'bin/calc_graphdna.py',
'bin/calc_fcgr.py',
'bin/calc_lempelziv.py',
'bin/calc_ncd.py',
'bin/calc_wmetric.py',
'bin/calc_word.py',
'bin/calc_word_bool.py',
'bin/calc_word_sets.py',
'bin/calc_word_cv.py',
'bin/calc_word_d2.py',
'bin/calc_word_ffp.py',
'bin/calc_word_rtd.py',
'bin/create_wordpattern.py'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)