Update version number
This commit is contained in:
@@ -0,0 +1 @@
|
||||
__version__ = "0.0.2"
|
||||
28
setup.py
Normal file
28
setup.py
Normal file
@@ -0,0 +1,28 @@
|
||||
from distutils.core import setup
|
||||
from pymetaverse import __version__ as version
|
||||
|
||||
long_description = None
|
||||
with open("README.md", "r") as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name="pymetaverse",
|
||||
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=["pymetaverse"],
|
||||
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"
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user