Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91213339
setup.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 9, 01:03
Size
1 KB
Mime Type
text/x-python
Expires
Mon, Nov 11, 01:03 (2 d)
Engine
blob
Format
Raw Data
Handle
22221612
Attached To
R7078 singularity-pipeline
setup.py
View Options
from
setuptools
import
setup
from
singularity_pipeline
import
__version__
with
open
(
"README.md"
,
"r"
)
as
fh
:
long_description
=
fh
.
read
()
setup
(
name
=
'singularity-pipeline'
,
version
=
__version__
,
description
=
'A runner script for pipelines using Singularity containers'
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
url
=
'https://github.com/kav2k/singularity-pipeline/'
,
author
=
'Alexander Kashev'
,
author_email
=
'alexander.kashev@math.unibe.ch'
,
license
=
'MIT'
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 3'
,
"License :: OSI Approved :: MIT License"
,
"Operating System :: POSIX :: Linux"
],
keywords
=
'singularity container runner'
,
packages
=
[
'singularity_pipeline'
],
install_requires
=
[
'PyYAML>=3.12'
,
'argparse>=1.4.0'
,
'colorama>=0.3'
],
entry_points
=
{
'console_scripts'
:
[
'singularity-pipeline = singularity_pipeline.__main__:__main'
]
}
)
Event Timeline
Log In to Comment