Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Vryst committed Dec 25, 2024
1 parent 062e45d commit 3de5ad1
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 25 deletions.
3 changes: 0 additions & 3 deletions main/flandyr.egg-info/PKG-INFO

This file was deleted.

12 changes: 0 additions & 12 deletions main/flandyr.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion main/flandyr.egg-info/dependency_links.txt

This file was deleted.

2 changes: 0 additions & 2 deletions main/flandyr.egg-info/top_level.txt

This file was deleted.

7 changes: 0 additions & 7 deletions main/setup.py

This file was deleted.

19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from setuptools import setup, find_packages

setup(
name="flandyr", # Name of your package
version="0.5", # Current version of your package
packages=find_packages(), # Automatically discover packages in the repo
long_description=open('README.md').read(), # Description of your project
long_description_content_type="text/markdown", # Specify format of README (markdown)
author="Vryst", # Your name or organization
author_email="elmanuk1000@gmail.com", # Your email
description="Text based RPG game", # A short description
url="https://github.com/Vryst/flandyr", # URL for your project
classifiers=[ # Classifiers to help users find your project
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Adjust license as needed
"Operating System :: OS Independent",
],
license="MIT", # Adjust license as necessary (e.g., MIT, GPL)
)

0 comments on commit 3de5ad1

Please sign in to comment.