Skip to content

Commit 706f141

Browse files
committed
feat: setup.py
1 parent 352a425 commit 706f141

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)