forked from lillithkt/accessible_output3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 1.2 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
from setuptools import setup, find_packages
import io
__doc__ = (
"""Library to provide speech and braille output to a variety of different screen readers and other accessibility solutions."""
)
with io.open("readme.rst", encoding="UTF8") as readme:
long_description = readme.read()
setup(
name="accessible_output3",
author="Luna R",
author_email="pypi@lvna.me",
version="0.1.2",
description=__doc__,
long_description=long_description,
package_dir={"accessible_output3": "accessible_output3"},
packages=find_packages(),
package_data={"accessible_output3": ["lib/*"]},
zip_safe=False,
install_requires=["libloader", "platform_utils"],
extras_require={
':sys_platform == "win32"': ["pywin32", "libloader"],
':sys_platform == "darwin"': ["appscript"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Adaptive Technologies",
"Topic :: Software Development :: Libraries",
],
)