From fb8b5cd45419eaeb43fd1f6c1df9f10f5423c599 Mon Sep 17 00:00:00 2001 From: Boyan <36108495+confestim@users.noreply.github.com> Date: Thu, 21 Nov 2024 11:14:49 +0100 Subject: [PATCH] Unignored setup --- .gitignore | 1 - setup.py | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 06dcc4d..1d4ceea 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ config.py tests/ pathfinding/ test.py -setup.py #Doc env .docs_env diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7b8a027 --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +from setuptools import find_packages, setup + +with open("README.md", "r") as f: + l_description = f.read() + +setup( + name="temmies", + version="1.2.1", + packages=find_packages(), + description="A wrapper for the Themis website", + long_description=l_description, + long_description_content_type="text/markdown", + url="https://github.com/Code-For-Groningen/temmies", + author="Boyan K.", + author_email="boyan@confest.im", + license="GPLv3", + classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Programming Language :: Python :: 3.9", + ], + install_requires=[ + "requests", + "lxml", + "beautifulsoup4", + "keyring" + ], + python_requires=">=3.9", +) \ No newline at end of file