modify import name from src to piplot
This commit is contained in:
@@ -5,8 +5,8 @@ import sys
|
|||||||
import time
|
import time
|
||||||
import RPi.GPIO as GPIO
|
import RPi.GPIO as GPIO
|
||||||
from RPLCD.gpio import CharLCD
|
from RPLCD.gpio import CharLCD
|
||||||
from src.config import *
|
from piplot.config import *
|
||||||
from src.menu import menu
|
from piplot.menu import menu
|
||||||
|
|
||||||
###################################################################
|
###################################################################
|
||||||
|
|
||||||
|
|||||||
7
setup.py
7
setup.py
@@ -1,9 +1,9 @@
|
|||||||
import setuptools
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setup(
|
||||||
name="PiPlot2D",
|
name="PiPlot2D",
|
||||||
version="0.0.1",
|
version="0.0.1",
|
||||||
author="sinseman44",
|
author="sinseman44",
|
||||||
@@ -12,7 +12,8 @@ setuptools.setup(
|
|||||||
long_description="Control PiPlot2D system",
|
long_description="Control PiPlot2D system",
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/sinseman44/PiPlot2D",
|
url="https://github.com/sinseman44/PiPlot2D",
|
||||||
packages=setuptools.find_packages(where='piplot'),
|
#packages=setuptools.find_packages(where='piplot'),
|
||||||
|
packages=find_packages(),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
|||||||
Reference in New Issue
Block a user