-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 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
35
36
37
38
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
VERSION = '0.3.0'
DESCRIPTION = 'TA library for Pandas'
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
# Setting up
setup(
name="bamboo-ta",
version=VERSION,
author="DutchCryptoDad (DCD)",
author_email="<[email protected]>",
url="https://github.com/DutchCryptoDad/bamboo-ta",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
keywords=['python', 'pandas', 'numpy',
'trading', 'indicator', 'technical analysis'],
classifiers=[
"Development Status :: 2 - Pre-Alpha", # see https://pypi.org/classifiers/
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
install_requires=['pandas', 'numpy'],
extras_require={
"def": ["pytest", "twine"],
},
python_requres=">=3.10",
)