Skip to content

Commit

Permalink
feat: setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
GetPsyched committed Dec 10, 2023
1 parent 352a425 commit 706f141
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup

requirements = []
with open("requirements.txt") as f:
requirements = f.read().splitlines()

readme = ""
with open("README.md") as f:
readme = f.read()

setup(
name="project-hyperlink",
author="GetPsyched",
url="https://github.com/GetPsyched/project-hyperlink",
project_urls={
"Issue tracker": "https://github.com/GetPsyched/project-hyperlink/issues",
},
version="2.0.0",
license="MIT",
description="A Discord bot for servers based around NITKKR",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=requirements,
python_requires=">=3.11.0",
)

0 comments on commit 706f141

Please sign in to comment.