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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#!/usr/bin/env python
'''
Setup.py
========
For MacOS or iOS install additional dependency PyOBJus::
pip install https://github.com/kivy/pyobjus/zipball/master
For Android install additional dependency PyJNIus::
pip install https://github.com/kivy/pyjnius/zipball/master
'''
from os.path import dirname, join
import plyer
import io
EXTRA_OPTIONS = {}
try:
from setuptools import setup
EXTRA_OPTIONS = dict(
EXTRA_OPTIONS, **{
'extras_require': {
'ios': ['pyobjus'],
'macosx': ['pyobjus'],
'android': ['pyjnius'],
'dev': ['mock', 'flake8']
}
}
)
except ImportError:
from distutils.core import setup
CURDIR = dirname(__file__)
PACKAGES = [
'plyer',
'plyer.facades',
'plyer.platforms',
'plyer.platforms.linux',
'plyer.platforms.android',
'plyer.platforms.win',
'plyer.platforms.win.libs',
'plyer.platforms.ios',
'plyer.platforms.macosx',
'plyer.platforms.macosx.libs',
]
with io.open(join(CURDIR, "README.md"), encoding="utf8") as fd:
README = fd.read()
with io.open(join(CURDIR, "CHANGELOG.md"), encoding="utf8") as fd:
CHANGELOG = fd.read()
setup(
name='plyer',
version=plyer.__version__,
description='Platform-independent wrapper for platform-dependent APIs',
long_description=README + u"\n\n" + CHANGELOG + u"\n\n",
long_description_content_type='text/markdown',
author='Kivy team',
author_email='mat@kivy.org',
url='https://plyer.readthedocs.org/en/latest/',
packages=PACKAGES,
package_data={'': ['LICENSE', 'README.md']},
package_dir={'plyer': 'plyer'},
include_package_data=True,
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
**EXTRA_OPTIONS
)
|