-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1005 Bytes
/
setup.py
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
import os
from setuptools import setup
setup(
name = "strindex",
version = "3.6.0",
author = "zWolfrost",
author_email = "[email protected]",
description = "A command line utility to extract and patch strings of some filetypes, with a focus on compatibility and translation.",
long_description = open(os.path.join(os.path.dirname(__file__), "README.md")).read(),
long_description_content_type = "text/markdown",
license = "MIT",
keywords = "PE strings patching translation",
url = "https://github.com/zWolfrost/strindex",
packages = ["strindex", "strindex.filetypes"],
install_requires=[
"pefile>=2024.8.26",
],
extras_require = {
"filter_language": ["lingua-language-detector"],
"spellcheck": ["language-tool-python"],
"patch_gui": ["pyside6"],
},
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
entry_points = {
"console_scripts": [
"strindex = strindex.strindex:main",
],
},
)