2022-12-18 18:11:10 +00:00
|
|
|
from setuptools import setup, find_packages
|
2023-03-24 17:26:29 +00:00
|
|
|
import subprocess
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
# Call the create_user_files.py script
|
|
|
|
script_path = os.path.join("tools", "create_user_files.py")
|
|
|
|
subprocess.run([sys.executable, script_path])
|
|
|
|
|
|
|
|
setup(name="library", version="1.0.3", packages=find_packages())
|