This repository was archived by the owner on Dec 2, 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.71 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (49 loc) · 1.71 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.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"numpy",
"scipy",
"pandas",
"idelib>=3.1.0",
"backports.cached-property; python_version<'3.8'",
]
TEST_REQUIRES = [
"pytest",
"pytest-cov",
"hypothesis",
"sympy",
"numpy-quaternion==2020.11.2.17.0.49",
"plotly",
]
EXAMPLE_REQUIRES = [
]
setuptools.setup(
name='endaq-batch',
version='1.0.0a1',
author='Mide Technology',
author_email='help@mide.com',
description='A comprehensive, user-centric Python API for working with enDAQ data and devices',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MideTechnology/endaq-python',
license='MIT',
classifiers=['Development Status :: 2 - Pre-Alpha',
'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.batch'],
package_dir={'endaq.batch': './endaq/batch'},
install_requires=INSTALL_REQUIRES,
extras_require={
'test': INSTALL_REQUIRES + TEST_REQUIRES,
'example': INSTALL_REQUIRES + EXAMPLE_REQUIRES,
},
)