-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 989 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
31
32
33
34
35
36
from setuptools import setup, find_packages
import os
datadir = os.path.join('data','icarus')
datafiles = [(d, [os.path.join(d,f) for f in files])
for d, folders, files in os.walk(datadir)]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pueda',
version='0.1.12',
license='Apache 2.0',
author="Marco Merlin",
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
description="Collection of python for micro-Electronic Design Automation",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/bat52/pueda',
keywords='python EDA CAD',
data_files = datafiles,
install_requires=[
'wget',
'edalize',
'pyverilator-mm>=0.7.6',
'dtrx',
'myhdl',
'veriloggen',
'pyvcd',
'vcdvcd',
'numpy'
],
)