This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.56 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
#! /usr/bin/env python
import os
from setuptools import setup
import sys
PACKAGE = "seqcol"
# Additional keyword arguments for setup().
extra = {}
# Ordinary dependencies
DEPENDENCIES = []
with open("requirements/requirements-all.txt", "r") as reqs_file:
for line in reqs_file:
if not line.strip():
continue
DEPENDENCIES.append(line)
extra["install_requires"] = DEPENDENCIES
with open("{}/_version.py".format(PACKAGE), "r") as versionfile:
version = versionfile.readline().split()[-1].strip("\"'\n")
with open("README.md") as f:
long_description = f.read()
setup(
name=PACKAGE,
packages=[PACKAGE],
version=version,
description="Python implementation of seqcol protocol",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Distributed Computing",
],
keywords="genome, assembly, bioinformatics, reference, sequence",
url="https://github.com/refgenie/seqcol",
author="Nathan Sheffield, Michal Stolarczyk",
author_email="[email protected]",
license="BSD2",
entry_points=None,
include_package_data=True,
test_suite="tests",
tests_require=(["mock", "pytest"]),
setup_requires=(["pytest-runner"] if {"test", "pytest", "ptr"} & set(sys.argv) else []),
**extra,
)