Skip to content

Commit

Permalink
trying to fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kisnikser committed Dec 3, 2024
1 parent 3699ef5 commit 1165c05
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import io
import os
import sys
from setuptools import setup, find_packages
from setuptools import setup

version_info = {}
with open(os.path.join("src", "relaxit", "_version.py")) as f:
Expand All @@ -24,7 +24,13 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/intsystems/discrete-variables-relaxation",
package_dir= {"" : "src"} ,
packages=find_packages(where="src"),
packages=[
"relaxit",
"relaxit.distributions"
],
package_dir={
"relaxit": "src/relaxit",
"relaxit.distributions": "src/relaxit/distributions"
},
install_requires=["pyro-ppl==1.9.1"],
)

0 comments on commit 1165c05

Please sign in to comment.