8000 change name from pycwl to python-cwlgen · illusional/python-cwlgen@552b8a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 552b8a4

Browse files
committed
change name from pycwl to python-cwlgen
1 parent 2c38373 commit 552b8a4

File tree

7 files changed

+32
-34
lines changed

7 files changed

+32
-34
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# pycwl
1+
# python-cwlgen
22

3-
[![Build Status](https://travis-ci.org/khillion/pycwl.svg?branch=master)](https://travis-ci.org/khillion/pycwl)
4-
[![codecov](https://codecov.io/gh/khillion/pycwl/branch/master/graph/badge.svg)](https://codecov.io/gh/khillion/pycwl)
5-
[![Documentation Status](https://readthedocs.org/projects/pycwl/badge/?version=latest)](http://pycwl.readthedocs.io/en/latest/?badge=latest)
3+
[![Build Status](https://travis-ci.org/khillion/python-cwlgen.svg?branch=master)](https://travis-ci.org/khillion/python-cwlgen)
4+
[![codecov](https://codecov.io/gh/khillion/python-cwlgen/branch/master/graph/badge.svg)](https://codecov.io/gh/khillion/python-cwlgen)
5+
[![Documentation Status](https://readthedocs.org/projects/python-cwlgen/badge/?version=latest)](http://python-cwlgen.readthedocs.io/en/latest/?badge=latest)
6+
![Python version](https://img.shields.io/badge/python-2.7%2C%203.6-blue.svg)
67

7-
Pycwl is a python library for the manipulation and generation of CWL tool.
8+
Python-cwlgen is a python library for the generation of CWL programmatically.
9+
It supports the generation of CommandLineTool and DockerRequirement.
810
The library works for both Python 2.7.12+ and 3.6.0.
911

1012
------------------------
@@ -13,10 +15,10 @@ The library works for both Python 2.7.12+ and 3.6.0.
1315

1416
## Installation
1517

16-
You can install pycwl using pip with the following command:
18+
You can install python-cwlgen using pip with the following command:
1719

1820
```bash
19-
pip install git+https://github.com/khillion/pycwl#egg=pycwl
21+
pip install git+https://github.com/khillion/python-cwlgen#egg=python-cwlgen
2022
```
2123

2224
## How it works ?

doc/source/conf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
master_doc = 'index'
5050

5151
# General information about the project.
52-
project = u'pycwl'
52+
project = u'python-cwlgen'
5353
copyright = u'2016-2017 Kenzo-Hugo Hillion, Hervé Ménager'
5454
author = u'2016-2017 Kenzo-Hugo Hillion, Hervé Ménager'
5555

@@ -207,7 +207,7 @@
207207
#html_search_scorer = 'scorer.js'
208208

209209
# Output file base name for HTML help builder.
210-
htmlhelp_basename = 'pycwldoc'
210+
htmlhelp_basename = 'python-cwlgendoc'
211211

212212
# -- Options for LaTeX output ---------------------------------------------
213213

@@ -233,7 +233,7 @@
233233
# (source start file, target name, title,
234234
# author, documentclass [howto, manual, or own class]).
235235
latex_documents = [
236-
(master_doc, 'pycwl.tex', u'pycwl Documentation',
236+
(master_doc, 'python-cwlgen.tex', u'python-cwlgen Documentation',
237237
u'Kenzo-Hugo Hillion, Hervé Ménager', 'manual'),
238238
]
239239

@@ -263,7 +263,7 @@
263263
# One entry per manual page. List of tuples
264264
# (source start file, name, description, authors, manual section).
265265
man_pages = [
266-
(master_doc, 'pycwl', u'pycwl Documentation',
266+
(master_doc, 'python-cwlgen', u'python-cwlgen Documentation',
267267
[author], 1)
268268
]
269269

@@ -277,8 +277,8 @@
277277
# (source start file, target name, title, author,
278278
# dir menu entry, description, category)
279279
texinfo_documents = [
280-
(master_doc, 'pycwl', u'pycwl Documentation',
281-
author, 'pycwl', 'Library for manipulation and generation of CWL tool.',
280+
(master_doc, 'python-cwlgen', u'python-cwlgen Documentation',
281+
author, 'python-cwlgen', 'Library for manipulation and generation of CWL tool.',
282282
'Miscellaneous'),
283283
]
284284

doc/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
.. pycwl - Python library for manipulation and generation of CWL tools.
1+
.. python-cwlgen - Python library for manipulation and generation of CWL tools.
22
33
4-
Welcome to pycwl's documentation!
5-
===================================
4+
Welcome to python-cwlgen's documentation!
5+
=========================================
66

77

88
.. toctree::

doc/source/installation.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. pycwl - Python library for manipulation and generation of CWL tools.
1+
.. python-cwlgen - Python library for manipulation and generation of CWL tools.
22
33
.. _install:
44

@@ -8,10 +8,10 @@ Installation
88

99
.. _dependencies:
1010

11-
pycwl dependencies
12-
==================
11+
python-cwlgen dependencies
12+
==========================
1313

14-
pycwl is initially built with Python3 and uses the following libraries:
14+
python-cwlgen is initially built with Python3 and uses the following libraries:
1515

1616
- ruamel.yaml (0.13.7)
1717
- six (1.10.0)
@@ -26,7 +26,7 @@ Pip
2626

2727
You can use pip to install directly for the git repository::
2828

29-
pip install git+https://github.com/khillion/pycwl#egg=pycwl
29+
pip install git+https://github.com/khillion/python-cwlgen#egg=python-cwlgen
3030

3131
.. _uninstallation:
3232

@@ -36,6 +36,6 @@ Uninstallation procedure
3636
Pip
3737
---
3838

39-
You can remove pycwl with the following command::
39+
You can remove python-cwlgen with the following command::
4040

41-
pip uninstall pycwl
41+
pip uninstall python-cwlgen

doc/source/introduction.rst

Lines changed: 3 additions & 2 deletions
Origina F438 l file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
.. pycwl - Python library for manipulation and generation of CWL tools.
1+
.. python-cwlgen - Python library for manipulation and generation of CWL tools.
22
33
.. _introduction:
44

55
************
66
Introduction
77
************
88

9-
Pycwl is a python library for the manipulation and generation of CWL tools.
9+
Python-cwlgen is a python library for the generation of CWL programmatically.
10+
It supports the generation of CommandLineTool and DockerRequirement.

doc/source/references.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. pycwl - Python library for manipulation and generation of CWL tools.
1+
.. python-cwlgen - Python library for manipulation and generation of CWL tools.
22
33
.. _references:
44

setup.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
from setuptools import setup
2-
import sys, os
32

4-
if sys.argv[-1] == 'publish':
5-
os.system("python setup.py sdist bdist_wheel upload; git push")
6-
sys.exit()
7-
8-
setup(name="pycwl",
9-
version='0.1.1',
10-
description='',
3+
setup(name="python-cwlgen",
4+
version='0.1.0',
5+
description='Generation of CWL programmatically. Avaible types: CommandLineTool and DockerRequirement',
116
author='Kenzo-Hugo Hillion and Hervé Ménager',
127
author_email='kehillio@pasteur.fr and hmenager@pasteur.fr',
138
keywords = ['cwl'],

0 commit comments

Comments
 (0)
0