30 lines
965 B
Python
30 lines
965 B
Python
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="pyft5xx6",
|
|
version="0.1.0",
|
|
author="dtourolle",
|
|
author_email="duncan@tourolle.paris",
|
|
description="Python library for control of FT5xx6 Capacitive Touch panels (CTPs)",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://gitea.tourolle.paris/dtourolle/PyFTtxx6",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: System :: Hardware",
|
|
],
|
|
python_requires=">=3.6",
|
|
install_requires=[
|
|
"smbus2",
|
|
"RPi.GPIO; platform_system=='Linux'"
|
|
],
|
|
keywords="raspberry pi, touch panel, capacitive, ft5xx6, i2c",
|
|
)
|