-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (38 loc) · 1.12 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
from setuptools import setup, find_packages
import os
import re
setup(
name='PyBlock',
version=open('VERSION.txt').read().strip(),
author='Alexander Dietz',
author_email='[email protected]',
packages=find_packages(where='.', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={},
license=open('LICENSE.txt').read().strip(),
description='Tool to analyze block in minecraft maps.',
long_description="Tool to analyze block in minecraft maps.",
include_package_data=True,
install_requires=[
'click',
'nbt',
'frozendict',
'webcolors',
'pillow',
'numpy'
],
entry_points={
'console_scripts': [
'pyblock=pyblock.mcmain:cli'
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: MIT',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)