47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""
|
|
Setup script for simple-scope-parser package.
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="simple-scope-parser",
|
|
version="0.1.0",
|
|
author="Joe",
|
|
description="A simple package for parsing oscilloscope CSV data from various manufacturers",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Topic :: Scientific/Engineering :: Physics",
|
|
],
|
|
python_requires=">=3.7",
|
|
install_requires=[
|
|
"numpy>=1.19.0",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=6.0",
|
|
"black>=21.0",
|
|
"flake8>=3.8",
|
|
],
|
|
"analysis": [
|
|
"scipy>=1.7.0",
|
|
"matplotlib>=3.3.0",
|
|
],
|
|
},
|
|
)
|