Skip to content

Commit 6a20e9d

Browse files
committed
Fix PyProject.toml
1 parent fb7fb1a commit 6a20e9d

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
---
9+
## [1.0.3]
10+
11+
### Fixed
12+
- Fixed pyproject.toml file Packaging Issue
13+
14+
915
## [1.0.2]
1016

1117
### Fixed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fastpix_python"
33
version = "1.0.1"
44
description = "Python Client SDK Generated by fastpix."
5-
authors = [{ name = "fastpix" },]
5+
authors = [{ name = "fastpix" }]
66
readme = "README.md"
77
requires-python = ">=3.9.2"
88
dependencies = [
@@ -19,7 +19,8 @@ dev = [
1919
]
2020

2121
[tool.setuptools.packages.find]
22-
where = ["src"]
22+
where = ["."]
23+
include = ["fastpix_python*"]
2324

2425
[tool.setuptools.package-data]
2526
"*" = ["py.typed"]
@@ -29,13 +30,14 @@ requires = ["setuptools>=80", "wheel"]
2930
build-backend = "setuptools.build_meta"
3031

3132
[tool.pytest.ini_options]
33+
34+
pythonpath = ["."]
3235
asyncio_default_fixture_loop_scope = "function"
33-
pythonpath = ["src"]
3436

3537
[tool.mypy]
3638
disable_error_code = "misc"
3739
explicit_package_bases = true
38-
mypy_path = "src"
40+
mypy_path = "."
3941

4042
[[tool.mypy.overrides]]
4143
module = "typing_inspect"
@@ -48,5 +50,3 @@ ignore_missing_imports = true
4850
[tool.pyright]
4951
venvPath = "."
5052
venv = ".venv"
51-
52-

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="fastpix_python",
8-
version="1.0.2",
8+
version="1.0.3",
99
packages=find_packages(),
1010
install_requires=[
1111
"requests>=2.25.0",

0 commit comments

Comments
 (0)