forked from albanywang2016/RestAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.11 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
from setuptools import setup
def readme():
try:
with open('README.md', 'r') as f:
return f.read()
except:
return ''
setup(
name = 'fxcmpy',
packages = ['fxcmpy'], # this must be the same as the name above
use_scm_version = {'root':".."},
setup_requires = ['setuptools_scm'],
description = 'A Python Wrapper Class for the RESTful API as provided by FXCM Forex Capital Markets Ltd.',
long_description = readme(),
author = 'FXCM API',
author_email = '[email protected]',
license='BSD',
url = 'https://github.com/fxcm/RestAPI/tree/master/fxcmpy',
download_url = 'https://github.com/fxcm/RestAPI/tree/master/fxcmpy',
keywords = 'FXCM API Python Wrapper Finance Algo Trading',
install_requires=['pandas', 'socketIO_client', 'configparser', 'requests[socks]'],
python_requires='>=3.4',
include_package_data = True,
package_data={
'': ['*.txt']
},
classifiers = ['Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)