-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.31 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
"""
cats: cat sequence
"""
DOCLINES = __doc__.split("\n")
from setuptools import setup,find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'
]
setup(
author="Keith Hughitt",
author_email="[email protected]",
classifiers=CLASSIFIERS,
description="Command-line tool for manipulating and displaying commonly used bioinformatic file formats.",
install_requires=['biopython'],
setup_requires=['pytest-runner'],
tests_require=['pytest>=2.8'],
include_package_data=True,
license="BSD",
maintainer="Keith Hughitt",
maintainer_email="[email protected]",
name="cats",
packages=find_packages(),
package_data={'':['*.fasta', '*.gff3']},
platforms=["Linux", "Solaris", "Mac OS-X", "Unix"],
provides=['cats'],
url="https://github.com/khughitt/cats",
zip_safe=False,
version="0.4",
entry_points={
'console_scripts': ['cats = cats.ui.cli:main']
}
)