-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (35 loc) · 1.22 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
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
from setuptools import setup
from io import open
setup(
# ? Genel Bilgiler
name = "pyTrendyol",
version = "0.0.5",
url = "https://github.com/keyiflerolsun/pyTrendyol",
description = "Trendyol'dan veri almayı kolaylaştırmak için tasarlanan kütüphane.",
keywords = ["pyTrendyol", "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 = ["pyTrendyol"],
python_requires = ">=3.10",
install_requires = [
"pip",
"setuptools",
"wheel",
"Kekik",
"requests",
"parsel",
"pydantic"
],
# ? PyPI Bilgileri
long_description_content_type = "text/markdown",
long_description = "".join(open("README.md", encoding="utf-8").readlines()),
include_package_data = True
)