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
|
from setuptools import setup
# Collect the Current README docs for PyPI
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="screeninfo",
packages=["screeninfo", "screeninfo.enumerators"],
version="0.6.7",
description="Fetch location and size of physical screens.",
long_description=long_description,
long_description_content_type="text/markdown",
author="rr-",
author_email="rr-@sakuya.pl",
url="https://github.com/rr-/screeninfo",
keywords=["screen", "monitor", "desktop"],
classifiers=[
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
install_requires=[
"dataclasses ; python_version<'3.7'",
'Cython ; sys_platform=="darwin"',
'pyobjc-framework-Cocoa ; sys_platform=="darwin"',
],
)
|