-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (43 loc) · 1.46 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
import pathlib
from importlib.metadata import entry_points
from setuptools import find_packages
from setuptools import setup
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
requires = [
"requests>=2.28.0",
]
setup(
name="valorant-utils",
version="0.2.0",
description="A valorant utils module",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/make-or-break/valorant-utils",
license="",
author="MayNiklas",
author_email="[email protected]",
project_urls={
"Bug Reports": "https://github.com/make-or-break/valorant-utils/issues",
"Source": "https://github.com/make-or-break/valorant-utils",
},
keywords="discord-utils",
python_requires=">=3.8, <4",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Other Audience",
"Topic :: Communications :: Chat",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
],
install_requires=requires,
package_dir={"": "src/"},
packages=["valorant"],
test_suite="tests.TestValorant",
)