-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (32 loc) · 1.14 KB
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
from setuptools import setup, find_packages
setup(
name='onfi-decoder',
version='0.1.0',
description='Open NAND Flash Interface (ONFI) protocol decoder for logic analyzer captures',
long_description=open('README.md').read() if __import__('os').path.exists('README.md') else '',
long_description_content_type='text/markdown',
author='DavidLiu0536',
url='https://github.com/DavidLiu0536/onfi-decoder',
license='MIT',
packages=find_packages(),
install_requires=[
'matplotlib>=3.5',
],
entry_points={
'console_scripts': [
'onfi-decode = onfi_decoder.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
],
python_requires='>=3.8',
)