2019-08-19 18:49:56 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="flyingsnake",
|
2019-08-28 14:37:47 +00:00
|
|
|
version="1.0",
|
2019-08-19 18:49:56 +00:00
|
|
|
author="Stefano Pigozzi",
|
|
|
|
author_email="ste.pigozzi@gmail.com",
|
2019-08-28 11:31:43 +00:00
|
|
|
description="A Terraria world map renderer",
|
2019-08-19 18:49:56 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/Steffo99/flyingsnake",
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
"click>=7.0",
|
2019-08-28 15:00:24 +00:00
|
|
|
"lihzahrd>=1.0b6",
|
2019-08-19 18:49:56 +00:00
|
|
|
"Pillow>=6.1.0"
|
|
|
|
],
|
|
|
|
python_requires=">=3.7",
|
|
|
|
classifiers=[
|
2019-08-28 14:54:26 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
2019-08-19 18:49:56 +00:00
|
|
|
"Operating System :: OS Independent",
|
2019-08-28 14:54:26 +00:00
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
|
|
"Topic :: Games/Entertainment",
|
|
|
|
"Topic :: Multimedia :: Graphics",
|
|
|
|
"Typing :: Typed"
|
2019-08-28 14:28:54 +00:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"flyingsnake = flyingsnake.__main__:flyingsnake"
|
|
|
|
]
|
|
|
|
}
|
2019-08-19 18:49:56 +00:00
|
|
|
)
|