-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.05 KB
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 pathlib import Path
from setuptools import find_packages, setup
from naff_audio import __version__
setup(
name="naff-audio",
description="",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
author="LordOfPolls",
author_email="lordofpolls.dev@gmail.com",
url="",
version=__version__,
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=(Path(__file__).parent / "requirements.txt")
.read_text()
.splitlines(),
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Documentation",
"Typing :: Typed",
],
)