-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
6 changed files
with
19 additions
and
25 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,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) | ||
) |