-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (31 loc) · 922 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
from distutils.core import setup
import sys
setup(
name='Baskit',
version='0.2.99.50',
description='Minecraft Server Manager',
author='Steven McGrath',
author_email='[email protected]',
url='https://github.com/SteveMcGrath/baskit',
packages=['baskit', 'baskit.mc'],
entry_points = {
'console_scripts': [
'baskit = baskit.cli:cli',
]
},
#data_files=[
#],
# install_requires=[
# 'pyBukGet>=2.1'
# ],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration',
]
)