You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
import setuptools
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="OledPiMonitor",
|
|
version="0.0.1",
|
|
author="jerome aka jblb",
|
|
author_email="jerome@jblb.net",
|
|
description="Display IP address on a SSD1306",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://mygit.jblb.net/jerome/OledPiMonitor",
|
|
project_urls={
|
|
"jblb": "https:jblb.net",
|
|
"Haum": "https:haum.org",
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GPL",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
package_dir={"": "src"},
|
|
packages=setuptools.find_packages(where="src"),
|
|
python_requires=">=3.6",
|
|
install_requires= [
|
|
"RPi.GPIO==0.7.1a4",
|
|
"adafruit-circuitpython-ssd1306==2.12.3",
|
|
"Pillow==8.4.0",
|
|
],
|
|
entry_points={ # Optional
|
|
'console_scripts': [
|
|
'oled_status=OledPiMonitor.I2C_SSD1306:main',
|
|
],
|
|
}
|
|
|
|
)
|