8000 :books: update project meta data · pyexcel/pyexcel-xlsbr@5c823fe · GitHub
[go: up one dir, main page]

Skip to content

Commit 5c823fe

Browse files
committed
📚 update project meta data
1 parent 082b1e7 commit 5c823fe

16 files changed

+132
-109
lines changed

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
github: chfw
4+
patreon: chfw

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
With your PR, here is a check list:
2+
3+
- [ ] Has Test cases written
4+
- [ ] Has all code lines tested
5+
- [ ] Has `make format` been run?
6+
- [ ] Has `moban` been run?
7+
- [ ] Passes all Travis CI builds
8+
- [ ] Has fair amount of documentation if your change is complex
9+
- [ ] run 'make format' so as to confirm the pyexcel organisation's coding style
10+
- [ ] Please update CHANGELOG.rst
11+
- [ ] Please add yourself to CONTRIBUTORS.rst
12+
- [ ] Agree on NEW BSD License for your contribution

.github/workflows/pythonpublish.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Upload Python Package
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up Python
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: '3.x'
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install setuptools wheel twine
20+
- name: Build and publish
21+
env:
22+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
23+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
24+
run: |
25+
python setup.py sdist bdist_wheel
26+
twine upload dist/*
File renamed without changes.
File renamed without changes.

.moban.d/requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

.moban.d/version.py.jj2

Lines changed: 0 additions & 2 deletions
This file was deleted.

.moban.yml

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,8 @@
1-
requires:
2-
- type: git
3-
url: https://github.com/moremoban/pypi-mobans
4-
submodule: true
5-
- https://github.com/pyexcel/pyexcel-mobans
1+
overrides: "git://github.com/pyexcel/pyexcel-mobans!/mobanfile.yaml"
62
configuration:
7-
configuration_dir: "pyexcel-mobans:config"
8-
template_dir:
9-
- "pyexcel-mobans:templates"
10-
- "pypi-mobans:templates"
11-
- ".moban.d"
123
configuration: pyexcel-xlsbr.yml
134
targets:
14-
- README.rst: README.rst
15-
- setup.py: setup.py
16-
- requirements.txt: requirements.txt
17-
- LICENSE: NEW_BSD_LICENSE.jj2
18-
- MANIFEST.in: MANIFEST.in.jj2
5+
- README.rst: custom_readme.rst.jj2
196
- "tests/requirements.txt": "tests/requirements.txt"
20-
- test.sh: test.script.jj2
21-
- test.bat: test.script.jj2
22-
- .travis.yml: travis.yml.jj2
23-
- .gitignore: gitignore.jj2
247
- "docs/source/conf.py": "docs/source/conf.py.jj2"
25-
- "pyexcel_xlsbr/_version.py": version.py.jj2
26-
- lint.sh: lint.script.jj2
27-
- output: CHANGELOG.rst
28-
configuration: changelog.yml
29-
template: CHANGELOG.rst.jj2
8+
- "setup.py": "custom_setup.py.jj2"

CHANGELOG.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Change log
44
0.5.0-rc1 - 14.03.2019
55
--------------------------------------------------------------------------------
66

7-
first release
8-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7+
**first release**
98

109
#. read data out from xlsb format but to pyexcel-io's standard

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) by Onni Software Ltd. and its contributors
1+
Copyright (c) 2015-2019 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

0 commit comments

Comments
 (0)
0