-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
35 lines (34 loc) · 874 Bytes
/
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
from distutils.core import setup
setup(
name='quarry',
version='1.9.4', # Also update doc/conf.py
author='Barney Gale',
author_email='[email protected]',
url='https://github.com/barneygale/quarry',
license='MIT',
description='Minecraft protocol library',
long_description=open('README.rst').read(),
install_requires=[
'bitstring >= 3.1.0',
'cached_property >= 1.2.0',
'twisted >= 22.0.0',
'cryptography >= 0.9',
'pyOpenSSL >= 0.15.1',
'service_identity >= 14.0.0',
],
test_requires=[
'pytest'
],
packages=[
"quarry",
"quarry.data",
"quarry.net",
"quarry.types",
"quarry.types.buffer",
],
package_data={'quarry': [
'data/packets/*.csv',
'data/data_packs/*.nbt',
'data/keys/*',
]},
)