-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
61 lines (54 loc) · 1.66 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
59
60
61
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
from setuptools import setup
from io import open
setup(
# ? Genel Bilgiler
name = "Kekik",
version = "1.6.1",
url = "https://github.com/keyiflerolsun/Kekik",
description = "İşlerimizi kolaylaştıracak fonksiyonların el altında durduğu kütüphane..",
keywords = ["Kekik", "KekikAkademi", "keyiflerolsun"],
author = "keyiflerolsun",
author_email = "[email protected]",
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 = ["Kekik"],
python_requires = ">=3.10",
install_requires = [
"pip",
"setuptools",
"wheel",
"pytz",
"requests",
"aiohttp",
"httpx",
"parsel",
"cssselect",
# "thispersondoesnotexist",
"simplejson",
"rich",
"tabulate",
# "tqdm",
# "qrcode",
# "pyfiglet",
# "Pillow",
# "notify-py",
# "py3-validate-email"
"pycryptodome"
],
# ? Konsoldan Çalıştırılabilir
entry_points = {
"console_scripts": [
"domain2ip = Kekik.Domain2IP:domain_sorgu",
]
},
# ? PyPI Bilgileri
long_description_content_type = "text/markdown",
long_description = "".join(open("README.md", encoding="utf-8").readlines()),
include_package_data = True
)