-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 778 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
import codecs
import os
VERSION = '6.0.0'
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
LONG_DESCRIPTION = "\n" + fh.read()
# Setting up
setup(
name="YnExchangePY",
version=VERSION,
author="Yasha Najafi(YN)",
author_email="<najafiyasha@gmail.com>",
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['typing', 'bs4','plotly','logging','matplotlib','mplfinance','ccxt','ccxt','pandas',"urllib3","asyncio","aiohttp"],
keywords=['python', 'crypto', 'prices', 'crypto calculations', 'api', 'calculations',"metal"],
)