File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 8
8
- env : TARGET=pep8
9
9
- env : TARGET=mypy
10
10
services :
11
- - docker
11
+ - docker
12
12
install :
13
- - true
13
+ - true
14
14
script :
15
15
- docker build --tag ${TARGET} . -f .travis/${TARGET}.docker
16
16
- docker run -v /var/run/docker.sock:/var/run/docker.sock ${TARGET} /bin/bash -c "$(cat .travis/${TARGET}.run)"
17
+ deploy :
18
+ provider : pypi
19
+ username : __token__
20
+ on :
21
+ tags : true
22
+ distributions : sdist bdist_wheel
23
+ repo : common-workflow-language/cwl-utils
24
+ password :
25
+ secure : AZ+PuKZGoc/xK81zvNekgsZ++7NIwgh3Kw9G173aPxxjwfS9KxqqQ/s1qu/hGgvl1nrGrv+hfMYWSoy8iHV0qJ411DWEfWij0p924HEN4iBvMcPOhvvDOQck2YSdPQAAK3Xkt9EYHC6oMNr8dmof366GPqNSEvlxGvAbo1CP//gPM4Awbd84lhLD/6nsp9A1tLL4dVXDw4doWN3Sa8q1obP6Qa7+vuaU+9bG8cfmmJatGYLRYcK7gaMHY4YS3pMZ+uVNlcCjVXC9ywfpR/WiTUnOO/uFPVO+nZtoE0qHUXbtPur91TeROhGAxDSte4NBbnUOOU2ISn3CLT/QDD7s3yBfB5nur+UIdJILH/9h9JZdv+xqa0P30sX878SN00VkrZUoNbSJWthenSy8CWTJrjo64a88Vr8Yl6grk2ctrSHNyN+erPOx6gKayWyJibpekuFKJM2MxvcqehBARcxy+2YRHedDjrfyS/lZPctwjTDKtCn4kJRulqxsbcBY1zYOc814nyEuPF3b3vldVeYV1k0YmLToZ4XxBHVZcJe7YxoWApCQphC2rKNU+snEGKNIOXx1DQkr8u3E/skiE5Fb1SzHLoKf3UsjMrz09jOTIxer3V4O3t3PyjLrGudIiV7nEaVa/4pDzwNNEN0pKJK0AbuPg0EDloRWY0HQxkJAf7M=
Original file line number Diff line number Diff line change
1
+ __version__ = "0.4"
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
from setuptools import setup , find_packages
3
3
4
+ exec (open ("cwl_utils/__meta__.py" ).read ())
4
5
5
6
setup (
6
7
name = 'cwl-utils' ,
7
- version = '0.3' ,
8
+ version = __version__ ,
8
9
author = 'Common workflow language working group' ,
9
10
10
11
packages = find_packages (),
20
21
tests_require = ['pytest' ],
21
22
test_suite = 'tests' ,
22
23
scripts = ['cwl_utils/docker_extract.py' ],
24
+ long_description = open ("./README.md" ).read (),
25
+ long_description_content_type = "text/markdown" ,
26
+ url = 'https://github.com/common-workflow-language/cwl-utils' ,
23
27
)
You can’t perform that action at this time.
0 commit comments