-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.15 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="disnake-pagination",
version="2.1",
description="A simple Embed Paginator for your projects made with disnake.",
long_description=long_description,
long_description_content_type='text/markdown',
packages=['Paginator'],
url="https://github.com/DorianAarno/Paginator",
author="Aarno Dorian",
author_email="aarnodorian56@gmail.com",
download_url = "https://github.com/DorianAarno/Paginator/archive/refs/tags/v2.1.tar.gz",
license = "MIT",
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Typing :: Typed',
],
install_requires=[
'disnake'
]
)