Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apollo_fpga: get rid of poetry and add prompt-toolkit dependency #36

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions poetry.lock

This file was deleted.

49 changes: 35 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,41 @@
[tool.poetry]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "apollo-fpga"
version = "0.0.5"
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"}
]
license = { text = "BSD" }
description = "host tools for Apollo FPGA debug controllers"
authors = ["Great Scott Gadgets <[email protected]>"]
license = "BSD"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Security',
]
dependencies = [
"pyusb>1.1.1",
"pyvcd>=0.2.4",
"prompt-toolkit>3.0.16",
]

[tool.poetry.dependencies]
python = "^3.7"
pyusb = "^1.1.1"
pyvcd = "^0.2.4"
[project.urls]
repository = "https://github.com/greatscottgadgets/apollo"

[tool.poetry.dev-dependencies]
[tool.setuptools]
packages = ["apollo_fpga"]

[tool.poetry.scripts]
apollo = 'apollo_fpga.commands.cli:main'

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
apollo = "apollo_fpga.commands.cli:main"
63 changes: 0 additions & 63 deletions setup.py

This file was deleted.

Loading