generated from Damego/python-pypi-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.31 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
from codecs import open
from pathlib import Path
from setuptools import setup, find_packages
import tomli
with open("pyproject.toml", "rb") as f:
pyproject = tomli.load(f)
setup(
name=pyproject["tool"]["poetry"]["name"],
version=pyproject["tool"]["poetry"]["version"],
author="Damego",
author_email="[email protected]",
description=pyproject["tool"]["poetry"]["description"],
include_package_data=True,
install_requires=["interactions.py>=5.0.0,<6.0.0", "lavalink>=5.0.0,<6.0.0"],
license=pyproject["tool"]["poetry"]["license"],
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/interactions-py/lavalink",
packages=find_packages(),
python_requires=">=3.10",
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",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
)