This repository has been 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
/
setup.py
50 lines (44 loc) · 1.53 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"numpy>=1.16.6",
"ebmlite>=3.0.0",
"idelib>=3.2.3",
"requests",
"pandas>=1.3",
"jinja2", # required for pandas.DataFrame.style
]
TEST_REQUIRES = [
"pytest",
"pytest-cov",
]
EXAMPLE_REQUIRES = [
]
setuptools.setup(
name='endaq-ide',
version='1.1.0',
author='Mide Technology',
author_email='[email protected]',
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-ide',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'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.ide'],
package_dir={'endaq.ide': './endaq/ide'},
install_requires=INSTALL_REQUIRES,
extras_require={
'test': INSTALL_REQUIRES + TEST_REQUIRES,
'example': INSTALL_REQUIRES + EXAMPLE_REQUIRES,
},
)