Skip to content

Commit 146aac4

Browse files
committed
fixed python version, polyfill, and cleaned up pyproject
1 parent 9e05b5e commit 146aac4

File tree

1 file changed

+12
-26
lines changed

1 file changed

+12
-26
lines changed

pyproject.toml

Lines changed: 12 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[build-system]
22
requires = [
3-
"setuptools >= 61.0",
4-
"requests"
3+
"setuptools >= 61.0"
54
]
65
build-backend = "setuptools.build_meta"
76

87
[project]
98
name = "socket-sdk-python"
109
dynamic = ["version"]
11-
requires-python = ">= 3.11"
10+
requires-python = ">= 3.9"
1211
dependencies = [
1312
'requests',
1413
'typing-extensions>=4.12.2'
@@ -26,45 +25,32 @@ maintainers = [
2625
classifiers = [
2726
"Development Status :: 5 - Production/Stable",
2827
"Intended Audience :: Developers",
28+
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3.10",
2930
"Programming Language :: Python :: 3.11",
3031
"Programming Language :: Python :: 3.12",
3132
"Programming Language :: Python :: 3.13",
3233
"Programming Language :: Python :: 3.14"
33-
3434
]
3535

3636
# modern, faster linter and language server. install with `pip install -e ".[dev]"`
3737
[project.optional-dependencies]
3838
dev = [
3939
"ruff>=0.3.0",
40-
"twine",
41-
"wheel",
42-
"build",
40+
"twine>=4.0.0",
41+
"wheel>=0.40.0",
42+
"build>=1.0.0"
43+
]
44+
test = [
45+
"pytest>=7.0.0",
46+
"pytest-cov>=4.0.0"
4347
]
4448

4549
[project.urls]
4650
Homepage = "https://github.com/socketdev/socket-sdk-python"
4751

4852
[tool.setuptools.packages.find]
49-
include = [
50-
"socketdev",
51-
"socketdev.core",
52-
"socketdev.dependencies",
53-
"socketdev.export",
54-
"socketdev.fullscans",
55-
"socketdev.npm",
56-
"socketdev.openapi",
57-
"socketdev.org",
58-
"socketdev.purl",
59-
"socketdev.quota",
60-
"socketdev.report",
61-
"socketdev.repos",
62-
"socketdev.repositories",
63-
"socketdev.sbom",
64-
"socketdev.settings",
65-
"socketdev.tools",
66-
"socketdev.utils",
67-
]
53+
include = ["socketdev", "socketdev.*"]
6854

6955
[tool.setuptools.dynamic]
7056
version = {attr = "socketdev.version.__version__"}

0 commit comments

Comments
 (0)