We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352a425 commit 706f141Copy full SHA for 706f141
1 file changed
setup.py
@@ -0,0 +1,25 @@
1
+from setuptools import setup
2
+
3
+requirements = []
4
+with open("requirements.txt") as f:
5
+ requirements = f.read().splitlines()
6
7
+readme = ""
8
+with open("README.md") as f:
9
+ readme = f.read()
10
11
+setup(
12
+ name="project-hyperlink",
13
+ author="GetPsyched",
14
+ url="https://github.com/GetPsyched/project-hyperlink",
15
+ project_urls={
16
+ "Issue tracker": "https://github.com/GetPsyched/project-hyperlink/issues",
17
+ },
18
+ version="2.0.0",
19
+ license="MIT",
20
+ description="A Discord bot for servers based around NITKKR",
21
+ long_description=readme,
22
+ long_description_content_type="text/markdown",
23
+ install_requires=requirements,
24
+ python_requires=">=3.11.0",
25
+)
0 commit comments