-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.06 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name = 'pyplotlm',
packages = ['pyplotlm'],
version = '0.1.4',
license = 'MIT',
description = 'A Python package for sklearn to produce linear regression summary and diagnostic plots similar to those made in R with summary.lm and plot.lm',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Esmond Chu',
author_email = 'chuhke@gmail.com',
url = 'https://github.com/esmondhkchu/pyplotlm',
download_url = 'https://github.com/esmondhkchu/pyplotlm/archive/v0.1.4.tar.gz',
keywords = ['statistics', 'machine learning', 'regression'],
test_suite = 'tests',
install_requires = ['numpy', 'scipy', 'pandas', 'matplotlib', 'seaborn'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
)