-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·67 lines (60 loc) · 1.89 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
62
63
64
65
66
67
#!/usr/bin/env Python
"""
jgtpy
"""
from setuptools import find_packages, setup
from jgtpy import __version__ as version
INSTALL_REQUIRES = [
'pandas>=0.25.1',
'python-dotenv>=0.19.2',
'kaleido>=0.2.1',
'matplotlib>=3.3.1',
'plotly>=5.18.0',
'jgtapy>=1.9.12',
'dropbox>=11.36.2',
'mplfinance>=0.12.10b0'
]
EXTRAS_DEV_LINT = [
"flake8>=3.6.0,<3.7.0",
"isort>=4.3.4,<4.4.0",
]
EXTRAS_DEV_TEST = [
"coverage",
"pytest>=3.10",
]
EXTRAS_DEV_DOCS = [
"readme_renderer",
"sphinx",
"sphinx_rtd_theme>=0.4.0",
]
setup(
name='jgtpy',
version=version,
description='JGTrading Data maker\' Dataframes',
long_description=open('README.rst').read(),
author='GUillaume Isabelle',
author_email='[email protected]',
url='https://github.com/jgwill/jgtpy',
packages=find_packages(include=['jgtpy', 'jgtpy.forexconnect', 'jgtpy.forexconnect.lib', 'jgtpy.forexconnect.lib.windows', 'jgtpy.forexconnect.lib.linux'], exclude=['*test*']),
# packages=find_packages(include=['jgtpy', 'jgtpy.forexconnect', 'jgtpy.forexconnect.lib', 'jgtpy.forexconnect.lib.windows', 'jgtpy.forexconnect.lib.linux'], exclude=['*test*']),
install_requires=INSTALL_REQUIRES,
entry_points={
'console_scripts': ['jgtcli=jgtpy.jgtcli:main'],
},
extras_require={
'dev': (EXTRAS_DEV_LINT + EXTRAS_DEV_TEST + EXTRAS_DEV_DOCS),
'dev-lint': EXTRAS_DEV_LINT,
'dev-test': EXTRAS_DEV_TEST,
'dev-docs': EXTRAS_DEV_DOCS,
},
license='MIT',
keywords='data',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.7.16",
],
)