-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name="PyTA",
version="0.1.5",
description="PyTA is a Python library for technical analysis, offering a range of functions to compute indicators like moving averages, momentum, volatility, and patterns. Designed as a user-friendly alternative to TA-Lib, it leverages pandas and numpy for ease of use.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="David Wadsworth",
author_email="",
url='https://github.com/saviornt/PyTA',
packages=find_packages(),
python_requires='>=3.10',
install_requires=[
'numpy',
'pandas',
'scipy'
],
extras_require={
'dev': [
'pytest',
],
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
license='MIT',
)