-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 708 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name="univariate_linear_regression",
version="0.1.0",
description="Univariate linear regression of housing price against housing area",
author="Dibya Chakravorty",
packages=find_packages("src"),
package_dir={"": "src"},
author_email="dibyachakravorty@gmail.com",
install_requires=["jupyter==1.0.0",
"matplotlib==3.1.1",
"numpy==1.17.3",
"pytest==5.2.2",
"pytest-mpl==0.10",
"pytest-mock==1.11.2",
"scipy==1.3.1",
],
)