-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.24 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.24 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import glob
from setuptools import setup, find_packages
# read the contents of README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='iniForge',
description='Bulk Settings Precision: configuration files high-performance bulk editor.',
long_description=long_description,
long_description_content_type='text/plain',
version='3.1.0',
author=['Arik Levi'],
author_email=['ariklevi@gmail.com'],
homepage='TDB',
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.9',
setup_requires=['wheel'],
include_package_data=True,
install_requires=[
"configparser",
"PySide6==6.2.4",
"shiboken6==6.2.4",
"coloredlogs==15.0.1",
"numpy<2",
"pyperclip"
],
package_data={
'iniforge': [
'images/*.png',
'images/*.ico',
'images/help/*.png',
'config.ini',
'help_content.html',
'pkg_info.txt'
],
},
entry_points={
'console_scripts': [
'iniforge = iniforge.gui:main'
]
}
)