File size: 295 Bytes
e69a9f5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup, find_packages
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())