-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (25 loc) · 910 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
from setuptools import find_packages, setup
with open("README.md", "r") as desc:
long_description = desc.read()
raw_version = {"major": 1, "minor": 11, "patch": 12}
__version__ = (
f"{raw_version.get('major')}.{raw_version.get('minor')}.{raw_version.get('patch')}"
)
setup(
name="noobutils",
version=__version__,
description="Various shared utils and shit for my NoobCogs.",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NoobInDaHause/noobutils",
author="NoobInDaHause",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
install_requires=["emoji", "rapidfuzz", "unidecode"],
python_requires=">=3.11",
)