This repository was archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (57 loc) · 1.8 KB
/
setup.py
File metadata and controls
61 lines (57 loc) · 1.8 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
from setuptools import setup
import os
import re
with open(os.path.join(os.path.dirname(__file__), 'lapdog', '__init__.py')) as r:
version = re.search(r'__version__ = \"(\d+\.\d+\.\d+[-_a-zA-Z0-9]*)\"', r.read()).group(1)
with open('requirements.txt') as r:
requirements = r.readlines()
with open('README.md') as r:
readme = r.read()
setup(
name = 'lapdog',
version = version,
packages = [
'lapdog',
'lapdog.api',
'lapdog.cloud'
],
package_data={
'':[
'cromwell/wdl_pipeline.yaml',
'cromwell/LICENSE',
'cromwell/README.md',
'vue/.babelrc',
'vue/index.html',
'vue/package.json',
'vue/webpack.config.js',
'vue/src/main.js',
'vue/src/App.vue',
'vue/src/Pages/*.vue',
'vue/src/Components/*.vue',
'api/swagger/lapdog.yaml',
'wdl_pipeline.yaml'
],
},
description = 'A relaxed wrapper for FISS and dalmatian',
url = 'https://github.com/getzlab/lapdog',
author = 'Aaron Graubert - Broad Institute - Cancer Genome Computational Analysis',
author_email = 'aarong@broadinstitute.org',
long_description = readme,
long_description_content_type='text/markdown',
entry_points = {
'console_scripts': [
'lapdog = lapdog.__main__:main'
]
},
install_requires = requirements,
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"License :: OSI Approved :: MIT License"
],
license="MIT"
)