-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 724 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
setup(
name='linear_regression',
version='1.0.0',
description='A simple implementation of linear regression using gradient descent in Python',
author='UZNet Dev',
author_email='uznetdev@example.com',
url='https://github.com/uznetdev/LinearRegression',
packages=find_packages(), # Loyihadagi barcha paketlarni avtomatik ravishda topadi
install_requires=[], # Agar kerak bo'lsa, bu yerga boshqa kutubxonalarni qo'shing, masalan ['numpy', 'scipy']
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)