-
Notifications
You must be signed in to change notification settings - Fork 100
/
setup.py
61 lines (56 loc) · 1.71 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
# @Time : 29/4/2020 11:04 AM
# @Author : Joseph Chen
# @Email : [email protected]
# @FileName: setup.py
# @Software: PyCharm
"""
Copyright (C) 2020 Joseph Chen - All Rights Reserved
You may use, distribute and modify this code under the
terms of the JXW license, which unfortunately won't be
written for another century.
You should have received a copy of the JXW license with
this file. If not, please write to: [email protected]
"""
# Either specify package data in setup.py or MANIFEST.in:
# https://www.codenong.com/cs106808509/
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
setup(
name='qtrader',
version='0.0.4',
keywords=('Quantitative Trading', 'Qtrader', 'Backtest'),
description='Qtrader: Event-Driven Algorithmic Trading Engine',
long_description=long_description,
long_description_content_type='text/markdown',
license='JXW',
install_requires=['sqlalchemy',
'pandas',
'numpy',
'pytz',
'clickhouse-driver',
'matplotlib',
'plotly',
'python-telegram-bot',
'dash'],
author='josephchen',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(),
# package_data={"": [
# "*.ico",
# "*.ini",
# "*.dll",
# "*.so",
# "*.pyd",
# ]},
platforms='any',
url='',
entry_points={
'console_scripts': [
'example=examples.demo_strategy:run'
]
},
)