Skip to content

Commit

Permalink
[Update] pyproject.toml, setup.cfg, setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fasilwdr committed May 8, 2024
1 parent aede1aa commit 8cc58ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
17 changes: 7 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
[project]
name = "pyodoo_connector"
version = "0.1.0"
author = "Fasil"
author_email = "fasilwdr@hotmail.com"
description = "A Python package to interact with Odoo via JSON-RPC."
long_description = "file: README.md"
long_description_content_type = "text/markdown"
url = "https://github.com/fasilwdr/pyodoo_connector"
authors = [{ name = "Fasil", email = "fasilwdr@hotmail.com" }]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -20,7 +18,6 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.10"
]
packages = ["find:"]
python_requires = ">=3.6"
requires-python = ">=3.6" # specifying the Python version requirement here
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[metadata]
name = pyodoo_connect
name = pyodoo_connector
version = 0.1.0
author = Fasil
author_email = fasilwdr@hotmail.com
description = A Python package to interact with Odoo via JSON-RPC.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/fasilwdr/pyodoo_connect
url = https://github.com/fasilwdr/pyodoo_connector
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Expand All @@ -20,4 +20,4 @@ classifiers =

[options]
packages = find:
python_requires = >=3.6
python_requires = >=3.6
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from setuptools import setup

setup()
setup()

0 comments on commit 8cc58ae

Please sign in to comment.