-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
38 lines (33 loc) · 1.24 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
import io
from setuptools import setup, find_packages
import sys
with io.open('README.rst', mode='r', encoding='utf8') as f:
readme = f.read()
dependencies = []
if sys.version_info[:2] < (3, 4):
dependencies.append('enum34')
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,
install_requires=dependencies,
classifiers=[
'Development Status :: Development Status :: 3 - Alpha',
'Environment :: X11 Applications',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved :: Other/Proprietary License', # TODO fix
'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',
],
)