Skip to content

Commit

Permalink
Merge pull request #6 from mantiumai/topic/atz/pyproject
Browse files Browse the repository at this point in the history
Fleshing out pyproject.toml
  • Loading branch information
atz authored Jun 8, 2023
2 parents 6b633da + 92b29d5 commit be5b99b
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
jobs:
pypi:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Mantium Client

[![CI status](https://github.com/mantiumai/mantium-client-py/actions/workflows/test.yml/badge.svg)](https://github.com/mantiumai/mantium-client-py/actions)
[![License](https://img.shields.io/github/license/mantiumai/mantium-client-py)](https://github.com/mantiumai/mantium-client-py/blob/main/LICENSE.txt)

A Python client library for [Mantium services](https://mantiumai.com/).

Expand Down
90 changes: 89 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 25 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,32 @@
[tool.poetry]
name = "mantium-client-py"
name = "mantium-client"
version = "0.1.1"
license = "Apache-2.0"
description = "Python client for the Mantium API"
authors = ["Mantium <[email protected]>"]
readme = "README.md"
packages = [{include = "mantium"}]
repository = "https://github.com/mantiumai/mantium-client-py"
homepage = "https://github.com/mantiumai/mantium-client-py"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Pre-processors',
'Operating System :: OS Independent'
]
keywords = ["mantium", "ChatGPT", "AI"]


[tool.poetry.dependencies]
python = "^3.10"
Expand All @@ -21,7 +43,8 @@ types-invoke = "^1.7.3.3"

[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"

validate-pyproject = "^0.13"
flake8 = "^6.0.0"

[[tool.poetry.source]]
name = "dugong"
Expand Down

0 comments on commit be5b99b

Please sign in to comment.