This repository was archived by the owner on Nov 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (49 loc) · 1.67 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (49 loc) · 1.67 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"requests",
"python-dotenv",
"idelib",
"plotly",
"numpy",
"pandas",
]
TEST_REQUIRES = [
]
EXAMPLE_REQUIRES = [
]
setuptools.setup(
name='endaq-cloud',
version='1.1.0',
author='Mide Technology',
author_email='help@mide.com',
description='The cloud subpackage for endaq-python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MideTechnology/endaq-python-cloud',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
],
keywords='ebml binary ide mide endaq',
packages=['endaq.cloud'],
package_dir={'endaq.cloud': './endaq/cloud'},
install_requires=INSTALL_REQUIRES,
extras_require={
'test': INSTALL_REQUIRES + TEST_REQUIRES,
'example': INSTALL_REQUIRES + EXAMPLE_REQUIRES,
},
entry_points=dict(
console_scripts=[
"endaq-cloud=endaq.cloud.API_wrapper:main",
],
),
)