-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 939 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup_args = {
"name": "gruseloskop",
"version": "0.2.0",
"author": "Ilya Elenskiy",
"author_email": "[email protected]",
"license": "GPLv3",
"description": "Primitive USB oscilloscope using Arduino Uno and python",
"long_description": long_description,
"long_description_content_type": "text/markdown",
"url": "https://github.com/EvilMav/gruseloskop",
"packages": setuptools.find_packages()#["gruseloskop"],
}
if __name__ == "__main__":
setuptools.setup(
**setup_args,
classifiers=[
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
],
python_requires=">=3.7",
scripts=["bin/gruseloskop"],
install_requires=["pyserial", "numpy", "pyqtgraph", "PySide2"],
include_package_data=True,
)