Создайте python package controls and project file

This commit is contained in:
timur 2023-09-29 00:26:30 +03:00
parent 2660e0879b
commit f239ede75d
3 changed files with 14 additions and 0 deletions

0
controls/__init__.py Normal file
View File

2
controls/my_module.py Normal file
View File

@ -0,0 +1,2 @@
def hello_world():
return "Hello, World!"

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name='controls',
version='0.1.0',
description='My first project',
author='Temur',
packages=find_packages(),
install_requires=[
# Your dependencies go here
],
)