-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
70 lines (50 loc) · 1.27 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
# -*- coding: utf-8; py-indent-offset:4 -*-
import os.path
import codecs
import setuptools
keywords = [
'TA',
'technical-analysis',
'mathematics',
'algorithms',
'trading',
'statistics',
'crypto',
'cryptocurrency',
'ohlc',
'ohlcv'
]
# Get the long description from the relevant file
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
contributors = [
'@rnarciso',
'@t3ch9'
]
setuptools.setup(
name='TAcharts',
version='0.0.30',
author='Carl Farterson',
author_email='carlfarterson@gmail.com',
license='MIT',
description='TA Charting tool',
keywords=keywords,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/carlfarterson/TAcharts',
packages=setuptools.find_packages(),
install_requires=[
'pandas>=0.21.0',
'numpy>=1.0.0',
'matplotlib>=2.0.0'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers'
],
python_requires='>=3.6'
)