-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (35 loc) · 1004 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
37
# coding:utf-8
from setuptools import setup
setup(
name="scratchip",
url='https://github.com/jlsemi',
packages=["scratchip"],
package_data={
"scratchip": [
"assets/default.yaml",
"assets/project.yml",
"assets/project.mk",
"assets/gitignore",
],
},
use_scm_version={"relative_to": __file__, "write_to": "scratchip/version.py",},
author="Leway Colin@JLSemi",
author_email="[email protected]",
description=(
"ScratChip is a framework that can help to build your Chisel and Verilog/Systemverilog project easier."
),
license="Apache-2.0 License",
keywords=[
"verilog",
"chisel",
"rtl",
],
entry_points={"console_scripts": ["scratchip = scratchip.main:main"]},
setup_requires=["setuptools_scm",],
install_requires=[
"scratchip-batteries",
"pyyaml>=5.1",
],
# Supported Python versions: 3.6+
python_requires=">=3.6",
)