28 lines
942 B
Python
28 lines
942 B
Python
from distutils.core import setup
|
|
from metaverse import __version__ as version
|
|
|
|
long_description = None
|
|
with open("README.md", "r") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="Metaverse",
|
|
version=version,
|
|
description="A library for handling Second Life things.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown" if long_description else None,
|
|
url="https://github.com/FelixWolf/pymetaverse",
|
|
author="Félix",
|
|
author_email="felix.wolfz@gmail.com",
|
|
packages=["metaverse"],
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: zlib/libpng License",
|
|
"Topic :: Software Development :: Libraries"
|
|
]
|
|
) |