-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.25 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
r"""
____ _
| _ \ ___ __| |_ __ _ _ _ __ ___
| |_) / _ \ / _` | '__| | | | '_ ` _ \
| __/ (_) | (_| | | | |_| | | | | | |
|_| \___/ \__,_|_| \__,_|_| |_| |_|
Copyright 2021 Podrum Team.
This file is licensed under the GPL v2.0 license.
The license file is located in the root directory
of the source code. If not you may not use this file.
"""
import setuptools
setuptools.setup(
name = "nbt_utils",
packages = setuptools.find_packages(),
install_requires = [
"binary-utils"
],
version = "1.7",
license = "GPLv2.0",
description = "Podrum's NBT library.",
author = "Podrum",
url = "https://github.com/Podrum/nbt_utils",
keywords = ["nbt_utils", "nbt", "utils", "python3"],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
)