forked from kylejusticemagnuson/pyti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (23 loc) · 903 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
from setuptools import setup, find_packages
setup(
name="pyti",
version='0.2.2',
description='Technical Indicator Library',
long_description="This library contains various financial technical "
"indicators that can be used to analyze financial data.",
url='https://github.com/kylejusticemagnuson/pyti',
author='Kyle Justice Magnuson',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
keywords='financial technical indicator functions',
packages=find_packages(exclude=['tests']),
install_requires=['numpy', 'pandas'],
)