-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (33 loc) · 1.14 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
# Bu araç @keyiflerolsun tarafından | @KekikAkademi için yazılmıştır.
from setuptools import setup
from io import open
setup(
# ? Genel Bilgiler
name = "KeeneticPy",
version = "2.5",
url = "https://github.com/keyiflerolsun/KeeneticPy",
description = "Python Lib for Keenetic Routers",
keywords = ["KeeneticPy", "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 = ["KeeneticPy"],
python_requires = ">=3.10",
install_requires = [
"pip",
"setuptools",
"wheel",
"Kekik",
"httpx"
],
# ? PyPI Bilgileri
long_description_content_type = "text/markdown",
long_description = "".join(open("README.md", encoding="utf-8").readlines()),
include_package_data = True
)