forked from ernfrid/crimson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·57 lines (48 loc) · 1.71 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
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from crimson import __author__, __contact__, \
__homepage__, __version__
with open("README.rst") as src:
readme = src.read()
with open("CHANGELOG.rst") as src:
changelog = src.read().replace(".. :changelog:", "").strip()
with open("requirements.txt") as src:
requirements = [line.strip() for line in src]
with open("requirements-dev.txt") as src:
test_requirements = [line.strip() for line in src]
setup(
name="Crimson",
version=__version__,
description="Bioinformatics tool outputs converter to JSON or YAML.",
long_description=readme + "\n\n" + changelog,
author=__author__,
author_email=__contact__,
url=__homepage__,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*",
"tests"]),
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=False,
entry_points="""
[console_scripts]
crimson=crimson.cli:main
""",
keywords="crimson bioinformatics json yaml samtools picard fastqc",
tests_require=test_requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Utilities",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
],
)