1
Fork 0
mirror of https://github.com/Steffo99/royalspells.git synced 2024-10-16 06:17:37 +00:00
royalspells/setup.py

24 lines
724 B
Python

import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="royalspells",
version="4.0.0",
author="Stefano Pigozzi",
author_email="me@steffo.eu",
description="Meaningless fantasy spell stats generator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Steffo99/royalspells",
packages=setuptools.find_packages(),
install_requires=[],
python_requires=">=3.6",
classifiers=[
"Development Status :: 6 - Mature",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
]
)