2019-11-11 09:16:39 +00:00
|
|
|
import setuptools
|
2019-11-11 09:34:05 +00:00
|
|
|
import rpgpack.version
|
2019-11-11 09:16:39 +00:00
|
|
|
|
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
|
|
with open("requirements.txt", "r") as f:
|
|
|
|
install_requires = f.readlines()
|
|
|
|
|
|
|
|
setuptools.setup(
|
2019-11-11 09:34:05 +00:00
|
|
|
name="rpgpack",
|
|
|
|
version=rpgpack.version.semantic,
|
|
|
|
author="Stefano Pigozzi",
|
|
|
|
author_email="ste.pigozzi@gmail.com",
|
|
|
|
description="A Royalnet pack to play D&D by-chat",
|
2019-11-11 09:16:39 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2019-11-11 09:34:05 +00:00
|
|
|
url="https://github.com/Steffo99/rpgpack",
|
2019-11-11 09:16:39 +00:00
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
install_requires=install_requires,
|
|
|
|
python_requires=">=3.7",
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
],
|
|
|
|
)
|