forked from Advanced_Python/advanced-python-homework-2023
13 lines
248 B
Python
13 lines
248 B
Python
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
|
|
],
|
|
)
|