Skip to content
Snippets Groups Projects
Commit b677c00d authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Start build system transitioning

parent d4a00974
No related branches found
No related tags found
1 merge request!86Start build system transitioning
Pipeline #74868 passed
......@@ -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
......@@ -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"
......
[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/"
......@@ -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
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment