Skip to content

Commit

Permalink
Require pip install -e . rather than setup.py build_ext -i
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Nov 3, 2023
1 parent 03a5d28 commit 083c856
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
16 changes: 15 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"cython<3",
"numpy",
"setuptools",
"setuptools>=61.0",
]

[project]
Expand All @@ -22,3 +22,17 @@ classifiers = [
dependencies = [
"numpy",
]

[tool.setuptools]
packages = [
"pyquante2",
"pyquante2.basis",
"pyquante2.dft",
"pyquante2.geo",
"pyquante2.graphics",
"pyquante2.grid",
"pyquante2.ints",
"pyquante2.pt",
"pyquante2.scf",
"pyquante2.viewer",
]
13 changes: 0 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,5 @@

setup(
name="pyquante2",
install_requires=["numpy"],
packages=[
"pyquante2",
"pyquante2.basis",
"pyquante2.dft",
"pyquante2.geo",
"pyquante2.graphics",
"pyquante2.grid",
"pyquante2.ints",
"pyquante2.pt",
"pyquante2.scf",
"pyquante2.viewer",
],
ext_modules=ext_modules,
)

0 comments on commit 083c856

Please sign in to comment.