generated from DevCraftClub/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 823 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 823 Bytes
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
from setuptools import setup
setup(
name="notkinopoiskapi",
version="1.0.0",
description="Неофициальная библиотека для Kinopoisk API Unofficial",
long_description=open("readme.md", "r", encoding="utf8").read(),
long_description_content_type="text/markdown",
keywords="api kinopoisk python",
url="https://devcraft.club/downloads/notkinopoiskapi.28/",
repository="https://github.com/DevCraftClub/NotKinoPoiskAPI",
author="Maxim Harder",
author_email="dev@devcraft.club",
install_requires=[
"requests",
"python-decouple",
],
classifiers=[
"License :: OSI Approved :: GNUv3 License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
zip_safe=False,
)