forked from Blockguy24/mcpi-multiplayer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.01 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
import io
from setuptools import setup, find_packages
import sys
with io.open('README.rst', mode='r', encoding='utf8') as f:
readme = f.read()
setup(name='py3minepi',
version='0.0.1',
description='A better Minecraft Pi library.',
url='https://github.com/py3minepi/py3minepi',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
zip_safe=True,
include_package_data=True,
keywords='minecraft raspberry pi mcpi py3minepi',
long_description=readme,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)