-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.38 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.38 KB
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
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
from setuptools import find_packages
if __name__ == '__main__':
setup(
name='seqtools',
version="0.8",
description="Tools for sequence and alignment manipulation",
author="Brant Faircloth",
author_email="brant.faircloth+seqtools@gmail.com ",
url="http://github.com/faircloth-lab/seqtools/",
license="http://www.opensource.org/licenses/BSD-3-Clause",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
long_description=open('README.rst').read(),
install_requires=[
'numpy >= 1.3'
],
packages = [
'seqtools',
'seqtools.align',
'seqtools.fs',
'seqtools.sequence',
'seqtools.tests'
],
package_data = {
'':['*.txt'],
'seqtools': [
'tests/test-data/*'
],
},
include_package_data = True,
test_suite = "seqtools.tests",
)