advanced-python-homework-2023/setup.py

13 lines
248 B
Python
Raw Normal View History

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
],
)