-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 696 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 696 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "dataforgelab",
packages = find_packages(),
author = "ppoak",
author_email = "ppoak@foxmail.com",
description = "Quantitative Copilot - a helper in quant developping",
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = ['quant', 'framework', 'finance'],
url = "https://github.com/ppoak/dataforge",
version = '0.1.2',
install_requires = [
'bs4',
'numpy',
'joblib',
'pandas',
'akshare',
'backtrader',
'matplotlib',
],
)