-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 787 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
35
36
37
38
39
from setuptools import setup, find_packages
with open("README.md", "r") as file:
long_description = file.read()
link = 'https://github.com/xXxCLOTIxXx/nz-ua.py/archive/refs/heads/main.zip'
ver = '1.1.6'
setup(
name = "nz-ua.python",
version = ver,
url = "https://github.com/xXxCLOTIxXx/nz-ua.py",
download_url = link,
license = "MIT",
author = "Xsarz",
author_email = "[email protected]",
description = "Library for working with the nz-ua application.",
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = [
"nz",
"nz_ua"
"nz.py",
"nz-ua",
"nz-ua.py",
"nz.ua",
"async"
"api",
"python",
"python3",
"python3.x",
"xsarz",
"official"
],
install_requires = [
"aiohttp"
],
packages = find_packages()
)