Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Commits
b677c00d
Commit
b677c00d
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Start build system transitioning
parent
d4a00974
No related branches found
No related tags found
1 merge request
!86
Start build system transitioning
Pipeline
#74868
passed
2 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+2
-1
2 additions, 1 deletion
.gitignore
.gitlab-ci.yml
+0
-4
0 additions, 4 deletions
.gitlab-ci.yml
pyproject.toml
+45
-0
45 additions, 0 deletions
pyproject.toml
setup.py
+0
-25
0 additions, 25 deletions
setup.py
with
47 additions
and
30 deletions
.gitignore
+
2
−
1
View file @
b677c00d
...
...
@@ -113,4 +113,5 @@ _b_asic_debug_log.txt
*.pyproject
ui_*.py
TODO.txt
*.log
\ No newline at end of file
*.log
b_asic/_version.py
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
0
−
4
View file @
b677c00d
...
...
@@ -22,10 +22,6 @@ before_script:
coverage_format
:
cobertura
path
:
cov.xml
run-test-3.6
:
image
:
python:3.6
extends
:
"
.run-test"
run-test-3.7
:
image
:
python:3.7
extends
:
"
.run-test"
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
0 → 100644
+
45
−
0
View file @
b677c00d
[project]
name
=
"b-asic"
description
=
"Better ASIC Toolbox"
readme
=
"README.md"
maintainers
=
[
{
name
=
"Oscar Gustafsson"
,
email
=
"oscar.gustafsson@gmail.com"
}
,
]
license
=
{
file
=
"LICENSE"
}
requires-python
=
">
=
3.7
"
dependencies
=
[
"numpy"
,
"pybind11>
=
2.3
.
0
",
"pyside2"
,
"qtpy"
,
"graphviz<
=
0.17
",
"matplotlib"
,
"scipy"
,
]
classifiers
=
[
"Intended Audience :: Science/Research"
,
"Programming Language :: Python :: 3"
,
"License :: OSI Approved :: MIT License"
,
"Operating System :: OS Independent"
,
]
dynamic
=
[
"version"
,
"authors"
]
[tool.setuptools]
zip-safe
=
false
[tool.setuptools.packages.find]
include
=
[
"b_asic*"
]
[build-system]
requires
=
["setuptools>
=
45
", "
setuptools_scm[toml]>
=
6.2
", "
wheel
"]
build-backend
=
"setuptools.build_meta"
[tool.setuptools_scm]
write_to
=
"b_asic/_version.py"
version_scheme
=
"release-branch-semver"
local_scheme
=
"node-and-date"
fallback_version
=
"0.0+UNKNOWN"
[project.urls]
homepage
=
"https://gitlab.liu.se/da/B-ASIC"
documenation
=
"https://da.gitlab-pages.liu.se/B-ASIC/"
This diff is collapsed.
Click to expand it.
setup.py
+
0
−
25
View file @
b677c00d
...
...
@@ -63,8 +63,6 @@ class CMakeBuild(build_ext):
setuptools
.
setup
(
name
=
"
b-asic
"
,
version
=
"
1.0.1-beta
"
,
author
=
"
Adam Jakobsson, Angus Lothian, Arvid Westerlund, Felix Goding,
"
"
Ivar Härnqvist, Jacob Wahlman, Kevin Scott, Rasmus Karlsson,
"
"
Oscar Gustafsson, Andreas Bolin
"
,
...
...
@@ -73,29 +71,6 @@ setuptools.setup(
"
ivaha717@student.liu.se, jacwa448@student.liu.se,
"
"
kevsc634@student.liu.se, raska119@student.liu.se,
"
"
oscar.gustafsson@liu.se, andbo467@student.liu.se
"
,
description
=
"
Better ASIC Toolbox
"
,
long_description
=
open
(
"
README.md
"
,
"
r
"
).
read
(),
long_description_content_type
=
"
text/markdown
"
,
url
=
"
https://gitlab.liu.se/da/B-ASIC
"
,
license
=
"
MIT
"
,
classifiers
=
[
"
Programming Language :: Python :: 3
"
,
"
License :: OSI Approved :: MIT License
"
,
"
Operating System :: OS Independent
"
,
],
python_requires
=
"
>=3.6
"
,
install_requires
=
[
"
numpy
"
,
"
pybind11>=2.3.0
"
,
"
pyside2
"
,
"
qtpy
"
,
"
graphviz<=0.17
"
,
"
matplotlib
"
,
"
scipy
"
],
packages
=
[
"
b_asic
"
,
"
b_asic/GUI
"
,
"
b_asic/scheduler_gui
"
],
ext_modules
=
[
CMakeExtension
(
"
_b_asic
"
)],
cmdclass
=
{
"
build_ext
"
:
CMakeBuild
},
zip_safe
=
False
,
include_package_data
=
True
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment