-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 745 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (26 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# The setup file for Win package
#
import os, sys
if os.name != 'nt':
raise RuntimeError('The package is only for Windows NT.')
if sys.version_info < (3, 10):
raise RuntimeError('This package requires Python 3.10 or higher')
if sys.version_info >= (3, 15):
raise RuntimeError('This package requires Python 3.14 or lower to 3.10, >=3.15 is not compatible with it')
from setuptools import setup, find_packages
setup(
name='win',
version='1.0.0',
package_dir={'': '.'},
packages=find_packages(),
package_data={
'win': [
'abs/controls/data/*.bmp',
'abs/data/*.*',
'com/data/*.*',
'com/icl/iclstorage/*.*'
]
},
include_package_data=True
)