This repository has been archived by the owner on Sep 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
52 lines (48 loc) · 2.41 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
#!/usr/bin/env python
#
# -----------------------------------------------------------------------------
# Copyright (c) 2015-2016 Daniel Standage <[email protected]>
# Copyright (c) 2015-2016 Indiana University
# Copyright (c) 2016 The Regents of the University of California
#
# This file is part of genhub (http://github.com/standage/genhub) and is
# licensed under the BSD 3-clause license: see LICENSE.txt.
# -----------------------------------------------------------------------------
"""Setup configuration for genhub"""
import setuptools
import versioneer
setuptools.setup(name='genhub',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=('Explore eukaryotic genome composition and '
'organization with iLoci'),
url='http://github.com/standage/genhub',
author='Daniel Standage',
author_email='[email protected]',
license='BSD-3',
packages=['genhub'],
scripts=['scripts/fidibus',
'scripts/genhub-filens.py',
'scripts/genhub-format-gff3.py',
'scripts/genhub-glean-to-gff3.py',
'scripts/genhub-namedup.py',
'scripts/genhub-ilocus-summary.py',
'scripts/genhub-pilocus-summary.py',
'scripts/genhub-milocus-summary.py',
'scripts/genhub-stats.py',
'scripts/genhub-compact.py',
'scripts/genhub-monitor-refseq.py',
'scripts/genhub-uniq.py'],
install_requires=['pyyaml', 'pycurl'],
package_data={'genhub': ['genomes/*.yml', 'genomes/*.txt']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
zip_safe=False)