-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
352a425
commit 706f141
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
) |