forked from alex4200/PyBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.32 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
42
from setuptools import setup, find_packages
import os
import re
#requirements = [r.strip() for r in open('requirements.txt').readlines() if not r.startswith('--')]
#requirements = [r if ('git+' not in r) else re.sub(r".*egg=(.*)", r"\1", r).strip() for r in requirements]
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',
],
)