Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tkchafin committed Jun 6, 2024
1 parent 51c5e23 commit 1e809f2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import os
from setuptools import setup, find_packages

directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(directory, 'version.py'), 'r') as f:
exec(f.read())

setup(
name='resistnet',
version=__version__,
Expand Down

0 comments on commit 1e809f2

Please sign in to comment.