-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 952 Bytes
/
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
"""Application setup"""
from setuptools import setup, find_packages
setup(
name="Sinamawin",
version="1.0.0",
description=("A quick and easy way to manage "
"network adapters in Windows (only IPv4)."),
long_description=open("README.md", encoding="utf-8").read().strip(),
long_description_content_type="text/markdown",
author="Javierorp",
author_email="javierorp@outlook.com",
url="https://github.com/javierorp/Sinamawin",
download_url="https://github.com/javierorp/Sinamawin/releases",
license="GPLv3",
keywords=[
"network-adapter",
"network-interface",
"ipv4",
"dhcp"
"windows",
],
platforms="nt",
packages=find_packages(),
install_requires=[
"pillow==10.2.0",
"psutil==5.9.7",
"pyperclip==1.8.2",
"tk==0.1.0",
"ttkbootstrap==1.10.1",
"requests==2.31.0",
],
)