-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.42 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
#!/usr/bin/env python
#
# -----------------------------------------------------------------------------
# Copyright (c) 2017 The Regents of the University of California
#
# This file is part of nuclmm (http://github.com/standage/nuclmm) and is
# licensed under the MIT license: see LICENSE.
# -----------------------------------------------------------------------------
from setuptools import setup
import glob
import versioneer
desc = ('Use arbitrary-order Markov chains to model nucleotide composition '
'and simulate random sequences')
setup(name='nuclmm',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=desc,
url='https://github.com/standage/nuclmm',
author='Daniel Standage',
author_email='[email protected]',
license='MIT',
packages=['nuclmm', 'nuclmm.tests'],
package_data={
'nuclmm': ['nuclmm/tests/data/*']
},
include_package_data=True,
entry_points={'console_scripts': ['nuclmm = nuclmm.__main__:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
zip_safe=True)