add sources and conf files
This commit is contained in:
26
setup.py
Executable file
26
setup.py
Executable file
@@ -0,0 +1,26 @@
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="PiPlot2D",
|
||||
version="0.0.1",
|
||||
author="sinseman44",
|
||||
author_email="sinseman44@gmail.com",
|
||||
description="Control PiPlot2D system",
|
||||
long_description="Control PiPlot2D system",
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/pypa/sampleproject",
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: Linux",
|
||||
],
|
||||
install_requires=[
|
||||
'RPi.GPIO',
|
||||
'RPLCD',
|
||||
],
|
||||
python_requires='>=3.6',
|
||||
)
|
||||
Reference in New Issue
Block a user