-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.47 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.47 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
import pathlib
import setuptools
setuptools.setup(
name="iftg",
version="1.3.1",
description="IFTG (ImageFromTextGenerator) is a Python package that simplifies creating robust datasets for OCR models. Generate images from text, apply over 10 built-in noise effects, and customize fonts and layouts. IFTG supports all languages and offers endless noise combinations, including custom noise creation.",
long_description=pathlib.Path("README.md").read_text(),
long_description_content_type="text/markdown",
url="https://omarsamirz.github.io/ImageFromTextGenerator/",
author="Omar Samir",
author_email="omarsamir1300@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
],
project_urls={
"Source": "https://github.com/OmarSamirz/ImageFromTextGenerator/tree/main"
},
python_requires=">=3.10,<3.13",
install_requires=[
"numpy>=2.1.1",
"opencv-python>=4.10.0.84",
"pillow>=10.4.0",
"scipy>=1.14.1",
"typing-extensions>=4.10.0",
"tqdm>=4.67.1",
],
packages=setuptools.find_packages(),
include_package_data=True,
)