-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 789 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 789 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='linear_segmentation',
version='0.2-1',
description='Automatic sparse sampling of 1-D array into linear segments minimizing error',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Michael Anderson',
author_email='manders9@jhu.edu',
url='http://github.com/andermi/linear_segmentation',
license='MIT',
packages=find_packages(),
install_requires=['numpy', 'scipy', 'matplotlib', 'tqdm'],
python_requires='>=3',
# scripts=['linear_segmentation/examples/linear_segmentation_with_slider.py']
)