forked from twoolie/NBT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69d707b
commit aeac65b
Showing
4 changed files
with
35 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.py] | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Note: OS-specific or editor-specific config files should be set in a global ignore file. | ||
# Use: git config --global core.excludesfile | ||
*.pyc | ||
.DS_Store | ||
/.idea/ | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,27 +4,27 @@ | |
from nbt import VERSION | ||
|
||
setup( | ||
name = 'NBT', | ||
version = ".".join(str(x) for x in VERSION), | ||
description = 'Named Binary Tag Reader/Writer', | ||
author = 'Thomas Woolford', | ||
author_email = '[email protected]', | ||
url = 'http://github.com/twoolie/NBT', | ||
license = open("LICENSE.txt").read(), | ||
long_description = open("README.txt").read(), | ||
packages = ['nbt'], | ||
classifiers = [ | ||
name='NBT', | ||
version=".".join(str(x) for x in VERSION), | ||
description='Named Binary Tag Reader/Writer', | ||
author='Thomas Woolford', | ||
author_email='[email protected]', | ||
url='http://github.com/twoolie/NBT', | ||
license=open("LICENSE.txt").read(), | ||
long_description=open("README.txt").read(), | ||
packages=['nbt'], | ||
install_requires=['mutf8'], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: 3.4", | ||
"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", | ||
"Topic :: Games/Entertainment", | ||
"Topic :: Software Development :: Libraries :: Python Modules" | ||
] | ||
] | ||
) |