-
Notifications
You must be signed in to change notification settings - Fork 126
/
setup.py
44 lines (33 loc) · 933 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from distutils.util import convert_path
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
metadata = dict()
with open(convert_path('pricelevels/version.py')) as metadata_file:
exec(metadata_file.read(), metadata)
setup(
name='pricelevels',
version=metadata['__version__'],
zip_safe=False,
description='Small lib to find support and resistance levels',
author='Alex Hurko',
author_email='alex1hurko@gmail.com',
license='wtfpl',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'scikit-learn==0.21.2',
'pandas==0.25.0',
'ZigZag==0.2.2',
'matplotlib==3.1.1',
],
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest'
],
include_package_data=True,
extras_require={
'test': ['coverage', 'pytest'],
},
)