-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
100 lines (86 loc) · 3.04 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
from setuptools import setup
def read_requirements(path):
with open(path, "r", encoding="utf-8") as f:
return [i.strip() for i in f.read().splitlines() if i]
requirements = read_requirements("./requirements.txt")
version = "0.0.5"
readme = ""
with open("README.md", encoding="utf-8") as f:
readme = f.read()
packages = [
"disnake_ext_paginator",
]
setup(
name="disnake_ext_paginator",
author="soosBot-Com, Snipy7374",
author_email="[email protected]",
url="https://github.com/Snipy7374/disnake-ext-paginator",
project_urls={
"Documentation": "https://github.com/Snipy7374/disnake-ext-paginator/blob/main/README.md",
"Issue tracker": "https://github.com/Snipy7374/disnake-ext-paginator/issues",
},
version=version,
packages=packages,
license="MIT",
description="A Python library to easily create embed paginators",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=requirements,
python_requires=">=3.8.0",
classifiers=[
"License :: OSI Approved :: MIT License",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
],
)
from setuptools import setup
def read_requirements(path):
with open(path, "r", encoding="utf-8") as f:
return [i.strip() for i in f.read().splitlines() if i]
requirements = read_requirements("./requirements.txt")
version = "0.0.5"
readme = ""
with open("README.md", encoding="utf-8") as f:
readme = f.read()
packages = [
"disnake_ext_paginator",
]
setup(
name="disnake_ext_paginator",
author="soosBot-Com, Snipy7374",
author_email="[email protected]",
url="https://github.com/Snipy7374/disnake-ext-paginator",
project_urls={
"Documentation": "https://github.com/Snipy7374/disnake-ext-paginator/blob/main/README.md",
"Issue tracker": "https://github.com/Snipy7374/disnake-ext-paginator/issues",
},
version=version,
packages=packages,
license="MIT",
description="A Python library to easily create embed paginators",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=requirements,
python_requires=">=3.8.0",
classifiers=[
"License :: OSI Approved :: MIT License",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
],
)