Skip to content

Commit a7be1bc

Browse files
hexoulikhoon
andauthored
Ready to publish (#31)
* Ready to publish * Lint * Fix python version string * Fix module name and README * Fix requirements * Use PyPi token instead of ID/PW * Add 3.10 matrix for pytest * Address comments * Update author * Update README.md Co-authored-by: Ikhun Um <[email protected]> Co-authored-by: Ikhun Um <[email protected]>
1 parent 684de5a commit a7be1bc

File tree

4 files changed

+69
-30
lines changed

4 files changed

+69
-30
lines changed

.github/workflows/publish.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish to PyPi
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up Python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: "3.x"
17+
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install setuptools wheel twine
22+
23+
- name: Build and publish
24+
env:
25+
TWINE_USERNAME: "__token__" # https://github.com/pypa/twine/blob/main/tests/test_integration.py#L46-L66
26+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN_CENTRALDOGMA }}
27+
run: |
28+
python setup.py sdist bdist_wheel
29+
twine upload dist/*

.github/workflows/central-dogma.yml .github/workflows/test.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Testing Central Dogma Python
32

43
on:
@@ -31,8 +30,8 @@ jobs:
3130
runs-on: ${{ matrix.os }}
3231
strategy:
3332
matrix:
34-
os: [ubuntu-18.04, ubuntu-latest]
35-
python-version: [3.7, 3.8, 3.9]
33+
os: [ubuntu-latest]
34+
python-version: ["3.7", "3.8", "3.9", "3.10"]
3635

3736
steps:
3837
- uses: actions/checkout@v2
@@ -65,7 +64,7 @@ jobs:
6564
strategy:
6665
matrix:
6766
os: [macos-latest, windows-latest]
68-
python-version: [3.7, 3.8, 3.9]
67+
python-version: ["3.7", "3.8", "3.9", "3.10"]
6968

7069
steps:
7170
- uses: actions/checkout@v2

README.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
# Central Dogma client in Python
2-
Python client library for Central Dogma
2+
<a href="https://pypi.org/project/centraldogma-python/">
3+
<img src="https://badge.fury.io/py/centraldogma-python.svg" alt="Package version">
4+
</a>
35

4-
🚧 WIP - Initial development is in progress 🚧
6+
Python client library for [Central Dogma](https://line.github.io/centraldogma/)
57

68
## Install
79
```
8-
$ pip install -r requirements.txt
9-
$ pip install --user .
10+
$ pip install centraldogma-python
1011
```
1112

12-
## Usage
13-
### Getting started
14-
Please see [`examples` folder](https://github.com/line/centraldogma-python/tree/main/examples) for more detail.
15-
```python
16-
client = ApiClient(base_url, token, timeout=30)
17-
client.list_projects()
18-
...
13+
## Getting started
14+
```pycon
15+
>>> from centraldogma.dogma import Dogma
16+
>>> dogma = Dogma("https://dogma.yourdomain.com", "token")
17+
>>> dogma.list_projects()
18+
[]
1919
```
20+
Please see [`examples` folder](https://github.com/line/centraldogma-python/tree/main/examples) for more detail.
21+
22+
---
2023

2124
## Development
2225
### Tests

setup.py

+23-15
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,45 @@
1111
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
14-
import os
1514
from setuptools import setup
1615

17-
package_root = os.path.abspath(os.path.dirname(__file__))
18-
readme_filename = os.path.join(package_root, "README.md")
19-
with open("README.md", "r") as fh:
20-
long_description = fh.read()
16+
17+
def get_long_description():
18+
with open("README.md", "r") as f:
19+
return f.read()
20+
2121

2222
setup(
23-
name="centraldogma",
24-
version="0.1.0",
25-
packages=["centraldogma", "centraldogma.data"],
26-
description="Central Dogma client in Python",
27-
long_description=long_description,
23+
name="centraldogma-python",
24+
version="0.1.1",
25+
description="Python client library for Central Dogma",
26+
long_description=get_long_description(),
2827
long_description_content_type="text/markdown",
2928
url="https://github.com/line/centraldogma-python",
30-
author="",
31-
author_email="",
32-
license="Apache 2.0",
33-
install_requires=["httpx", "marshmallow", "dataclasses-json"],
29+
author="Central Dogma Team",
30+
author_email="[email protected]",
31+
license="Apache License 2.0",
32+
packages=["centraldogma", "centraldogma.data"],
33+
install_requires=[
34+
"httpx",
35+
"marshmallow",
36+
"dataclasses-json",
37+
"pydantic",
38+
"python-dateutil",
39+
],
3440
python_requires=">=3.7",
3541
keywords="centraldogma",
3642
classifiers=[
43+
"Development Status :: 4 - Beta",
3744
"Intended Audience :: Developers",
3845
"License :: OSI Approved :: Apache Software License",
3946
"Operating System :: OS Independent",
47+
"Programming Language :: Python",
4048
"Programming Language :: Python :: 3",
4149
"Programming Language :: Python :: 3.7",
4250
"Programming Language :: Python :: 3.8",
4351
"Programming Language :: Python :: 3.9",
44-
"Programming Language :: Python",
52+
"Programming Language :: Python :: 3.10",
4553
"Topic :: Software Development :: Libraries :: Python Modules",
4654
],
4755
)

0 commit comments

Comments
 (0)