-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 726 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 726 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
28
from setuptools import setup, find_packages
setup(
name = 'pyfinancialdata',
version = '0.2',
author = 'Max Williams',
author_email = 'futuresharks@gmail.com',
license = 'GPLv3',
description = 'Intraday financial data files for backtesting or analysis',
package_data = {
'pyfinancialdata': [
'data/cryptocurrencies/*/*/*csv',
'data/currencies/*/*/*/*.csv',
'data/stocks/*/*/*.csv'
],
},
packages = [
'pyfinancialdata',
],
install_requires = [
'pandas'
],
classifiers = [
'Environment :: Console',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only'
],
)