-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (43 loc) · 1.26 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
""" Pypi setup for cheap_pie """
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
setup(
name='cheap_pie',
version='1.1.1',
license='Apache 2.0',
author="Marco Merlin",
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
description="A python tool for silicon validation.",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/bat52/cheap_pie',
keywords='python silicon validation',
install_requires=[
'untangle',
'hickle',
# parsers
'cmsis-svd',
'ipyxact',
'python-docx',
'wavedrom',
'wavedrom-ascii',
'pyverilator-mm',
'peakrdl-ipxact',
'peakrdl-uvm',
'peakrdl-verilog',
'peakrdl-cheader',
# 'lxml', # for xlst ipxact conversions
# transport layers
#'pylink-square',
#'pyocd',
#'esptool',
#'packaging' # for verilator version check
],
)
project_urls={
"Source": "https://github.com/bat52/cheap_pie",
"Tracker": "https://github.com/bat52/cheap_pie/issues"
}