-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
38 lines (35 loc) · 1016 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
# !/usr/bin/python
# -*- coding: utf-8 -*-
import setuptools
install_requires = [
'pyyaml>=5.4.1',
'numpy>=1.20.3',
'matplotlib>=3.4.2',
'apscheduler>=3.7.0',
'pymongo>=3.11.4',
'motor>=2.4.0',
'mplfinance>=0.12.7a17',
'pyqt5>=5.15.4',
'aiopyupbit>=0.1.1',
'cx_freeze>=6.6'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='upbit-trader',
version='0.7.0',
author='Codejune',
author_email='[email protected]',
description='Automatic trader program base on upbit openAPI',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/showmethecoin/upbit-trader',
packages=setuptools.find_packages(),
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)