This repository was archived by the owner on Jun 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.28 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.28 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
from setuptools import setup, find_packages
version = '0.5.2'
# Run 2to3 builder if we're on Python 3.x, from
# http://wiki.python.org/moin/PortingPythonToPy3k
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
# 2.x
from distutils.command.build_py import build_py
command_classes = {'build_py': build_py}
setup(name='pyfasta',
version=version,
description=\
"fast, memory-efficient, pythonic (and command-line) access to fasta sequence files",
url="http://github.com/brentp/pyfasta/",
long_description=open('README.rst').read() + "\n" + open('CHANGELOG.txt').read(),
classifiers=["Topic :: Scientific/Engineering :: Bio-Informatics"],
keywords='bioinformatics blast fasta',
author='brentp',
author_email='bpederse@gmail.com',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
package_data={'':['CHANGELOG.txt']},
include_package_data=True,
tests_require=['nose'],
test_suite='nose.collector',
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
scripts=[],
entry_points={
'console_scripts': ['pyfasta = pyfasta:main']
},
cmdclass=command_classes,
)