-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·51 lines (42 loc) · 1.3 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mergeBams",
version="0.14",
author="Scott Furlan",
author_email="[email protected]",
description="Merge sam/bam files with intelligent cell barcode preservation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/scfurl/mergeBams.git",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'pysam',
],
python_requires='>=2.5',
entry_points={'console_scripts': [
'mergeBams = mergeBams.__main__:run_BamMerge',
]},
)
"""
cd '/Users/sfurlan/OneDrive - Fred Hutchinson Cancer Research Center/computation/develop/mergeBams'
rm dist/*
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
scfurl
**At the FHCRC do the following... to install pipx**
sFH
ml Python
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx uninstall mergeBams
pipx install git+https://github.com/scfurl/mergeBams --include-deps
pipx install --include-deps mergeBams
"""