-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (57 loc) · 2.02 KB
/
setup.py
File metadata and controls
69 lines (57 loc) · 2.02 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#! /usr/bin/env python
from setuptools import setup
import sys
PACKAGE = "refgenieserver"
# Additional keyword arguments for setup().
extra = {}
# Ordinary dependencies
DEPENDENCIES = []
with open("requirements/requirements-all.txt", 'r') as reqs_file:
for line in reqs_file:
print(line)
if not line.strip():
continue
DEPENDENCIES.append(line)
# 2to3
if sys.version_info >= (3, ):
extra["use_2to3"] = True
extra["install_requires"] = DEPENDENCIES
with open("{}/_version.py".format(PACKAGE), 'r') as versionfile:
version = versionfile.readline().split()[-1].strip("\"'\n")
# Handle the pypi README formatting.
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
msg = "\033[032mPandoc conversion succeeded.\033[0m"
except(IOError, ImportError, OSError):
msg = "\033[0;31mWarning: pandoc conversion failed!\033[0m"
long_description = open('README.md').read()
setup(
name=PACKAGE,
packages=[PACKAGE],
version=version,
description="This server provides both a web interface and a RESTful API. Users may explore and download archived "
"indexes from the web interface or develop tools that programmatically query the API.",
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 :: Scientific/Engineering :: Bio-Informatics"
],
keywords="project, bioinformatics, sequencing, ngs, workflow, GUI, genomes, server",
url="https://refgenie.databio.org/",
author=u"Michal Stolarczyk, Vince Reuter, Nathan Sheffield",
license="BSD2",
entry_points={
"console_scripts": [
"{p} = {p}.__main__:main".format(p=PACKAGE),
],
},
include_package_data=True,
**extra
)
print(msg)