modify src folder in piplot folder

This commit is contained in:
sinseman44
2020-11-15 07:54:19 +00:00
parent e55f8ea1a2
commit 3a2275a30f
6 changed files with 4 additions and 3 deletions
View File
View File
View File
+2 -2
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import src.main import piplot.main
if __name__ == "__main__": if __name__ == "__main__":
src.main.main() piplot.main.main()
+2 -1
View File
@@ -12,7 +12,7 @@ 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='src'), packages=setuptools.find_packages(where='piplot'),
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
@@ -27,4 +27,5 @@ setuptools.setup(
"https://github.com/sinseman44/PyCNC/archive/v2.0.0.zip#egg=pycnc-2.0.0", "https://github.com/sinseman44/PyCNC/archive/v2.0.0.zip#egg=pycnc-2.0.0",
], ],
python_requires='>=3.6', python_requires='>=3.6',
scripts=['piplotter']
) )