-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (51 loc) · 1.81 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="JupyterPiDAQ",
url = "https://github.com/JupyterPhysSciLab/JupyterPiDAQ",
version="0.8.2",
description="Live Data Acquisition in Jupyter notebooks",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jonathan Gutow",
author_email="[email protected]",
license="GPL-3.0+",
packages=setuptools.find_packages(exclude=("dist","build","dev_testing",)),
#package_data={'javascript': ['javascript/*.js']},
data_files=[
('javascript',['jupyterpidaq/javascript/JupyterPiDAQmnu.js'])
],
include_package_data=True,
install_requires=[
'RPi.GPIO>=0.7.0;platform_system=="Linux"', # pi-plates requires
'spidev>=3.5;platform_system=="Linux"', # pi-plates requires
'Adafruit-PureIO>=1.1.9',
'Adafruit-ADS1x15>=1.0.2',
'Adafruit-GPIO>=1.0.3',
'pi-plates>=7.21',
'numpy>=1.21',
'plotly>=5.8.2',
'jupyter>=1.0.0',
'jupyterlab>=3.6.2',
'labquest>=1.0.0',
'notebook>=6.4.12', # security fixes
'jupyter-contrib-nbextensions>=0.5.1',
'pandas>=1.4.2',
'jupyter-pandas-GUI>=0.7.0',
'JPSLMenus>=0.5.0',
'JPSLUtils>=0.7.0',
'jupyterpidaq-menu>=0.1.0',
'AdvancedHTMLParser>=9.0.1'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: JavaScript',
'Operating System :: OS Independent'
]
)