-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 841 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 841 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from McClient import VERSION
setup(
name="McClient",
version=".".join(VERSION),
description="A library for interfacing with a MineCraft server.",
author="Jeppe Klitgaard",
author_email="jeppe@dapj.dk",
url="https://github.com/dkkline/McClientLib",
packages=["McClient",
"McClient.networking"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :" +
": GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: System :: Networking"
]
)