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

25 lines
724 B
Python
Raw Permalink Normal View History

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