-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (53 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (53 loc) · 1.59 KB
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
import os
from setuptools import setup
required = [
'numpy',
'pandas',
'pyarrow',
'yfinance',
'scipy',
'PyWavelets',
'Sphinx',
'rinohtype',
'nbsphinx',
'pytest-dependency',
'scipy',
'matplotlib',
'sklearn',
'joblib'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='trade-evaluation',
version='0.0.0',
description = 'A package for evaluating trade',
packages=[
'trade-evaluation',
],
license='MIT',
author_email = 'kuanlun.chiang@outlook.com',
url = 'https://github.com/allen-chiang/trade-evaluation',
project_urls = {
'Source Code' : 'https://github.com/allen-chiang/trade-evaluation',
'Documentation' : "https://allen-chiang.github.io/Time-Series-Transformer/"
},
download_url ='https://github.com/allen-chiang/Time-Series-Transformer/archive/1.1.2.tar.gz',
keywords = ['time series','stock', 'machine learning', 'deep learning'],
install_requires = required,
author = 'Kuan-Lun Chiang; Kuan-Yu Chiang',
long_description= long_description,
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)