-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
31 lines (29 loc) · 1.23 KB
/
setup.py
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
30
import setuptools
# This call to setup() does all the work
setuptools.setup(
name="piecewise-regression",
version="1.5.0",
description="piecewise (segmented) regression in python",
long_description= "piecewise-regression provides tools for fitting "
"continuous straight line models to data with "
"breakpoint(s) where the gradient changes. "
""
"For docs and more information, "
"visit the Github repo at "
"https://github.com/chasmani/piecewise-regression.",
long_description_content_type="text/markdown",
url="https://github.com/chasmani/piecewise-regression",
author="Charlie Pilgrim",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=setuptools.find_packages(),
install_requires=["numpy", "matplotlib", "scipy", "statsmodels"],
)