Skip to content

Commit

Permalink
build(pyproject.toml,setup.py): update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
dobizz committed Nov 5, 2023
1 parent a5a6a75 commit 0290fc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "pyplayht"
version = "0.0.0"
dependencies = [
"python-dotenv >= 0.20.0",
"requests >= 2.28.2",
]
dynamic = ["dependencies"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.pytest.ini_options]
pythonpath = [
Expand Down
8 changes: 0 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
from pathlib import Path

from setuptools import find_packages, setup

requirements = Path("requirements.txt").read_text().split("\n")

setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
# Add your dependencies here
*requirements
],
)

0 comments on commit 0290fc9

Please sign in to comment.