forked from kmprens/CheckEinvoice
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (50 loc) · 1.81 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
from setuptools import setup
from io import open
setup(
# ? Genel Bilgiler
name = "eFatura",
version = "1.1.1",
url = "https://github.com/keyiflerolsun/eFatura",
description = "Vergi veya TC Kimlik Numarasından E-Fatura Mükellefiyet Sorgusu",
keywords = ["eFatura", "KekikAkademi", "keyiflerolsun"],
author = "keyiflerolsun",
author_email = "keyiflerolsun@gmail.com",
license = "GPLv3+",
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"
],
# ? Paket Bilgileri
packages = ["eFatura"],
python_requires = ">=3.10",
install_requires = [
"setuptools",
"wheel",
"install_freedesktop",
"rich",
"requests",
"urllib3",
"Pillow",
"pytesseract"
],
# ? Konsoldan Çalıştırılabilir
entry_points = {
"console_scripts": [
"eFatura = eFatura.konsol:basla",
"eFaturaGUI = eFatura.arayuz:basla"
]
},
# ? Masaüstü Paketi
setup_requires = ["install_freedesktop"],
data_files = [
("share/appdata", ["Shared/org.KekikAkademi.eFatura.appdata.xml"]),
("share/applications", ["Shared/org.KekikAkademi.eFatura.desktop"]),
("share/icons/hicolor/scalable/apps", ["Shared/org.KekikAkademi.eFatura.svg"])
],
# ? PyPI Bilgileri
long_description_content_type = "text/markdown",
long_description = "".join(open("README.md", encoding="utf-8").readlines()),
include_package_data = True
)