-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 835 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 835 Bytes
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
#!/usr/bin/env python
import setuptools
setuptools.setup(
name='systemd-minecraft',
description='A systemd service file for one or more vanilla Minecraft servers',
author='Wurstmineberg',
author_email='mail@wurstmineberg.de',
packages=['minecraft'],
package_data={'minecraft': ['assets/*.json']},
use_scm_version={
'write_to': 'minecraft/_version.py',
},
setup_requires=[
'setuptools_scm',
],
install_requires=[
'docopt',
'loops',
'mcrcon',
'more-itertools',
'requests',
],
dependency_links=[
'git+https://github.com/fenhl/python-loops.git#egg=loops',
'git+https://github.com/wurstmineberg/MCRcon.git#egg=mcrcon',
'git:https://github.com/wurstmineberg/wurstmineberg-common-python.git#egg=wmb'
]
)