-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
from metaverse import __version__ as version
with open("README.md", "r", encoding="utf-8") 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",
url="https://github.com/FelixWolf/pymetaverse",
author="Félix",
author_email="felix.wolfz@gmail.com",
packages=find_packages(exclude=("build","examples")) + ["metaverse.viewer.message_template"],
package_data={
"metaverse.viewer.message_template": [
"*.msg", "*.msg.sha1", "*.txt"
],
},
license="Zlib",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
]
)