-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
34 lines (30 loc) · 1.02 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
import setuptools
DESCRIPTION = """\
Wicope is a fast oscilloscope GUI application that makes use of
Arduino to acquire signals.
This is not a professional oscilloscope, but it can be useful
for electronics enthusiasts and for education.
"""
with open("requirements_users.txt") as f:
required_packages = f.read().splitlines()
setuptools.setup(
name="wicope",
version="0.1.0b1",
author="Diego Palacios",
author_email="[email protected]",
description="A fast Arduino Oscilloscope",
long_description=DESCRIPTION,
url="https://github.com/diepala/wicope",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.7",
install_requires=required_packages,
entry_points={"console_scripts": ["wicope = wicope.app:main"]},
)