Move away from poetry
More or less everything is now done by setup.py Pipfile simply installs the module in editable mode, which recursively resolves dependencies as defined in setup.py.
This commit is contained in:
parent
864e4c9c41
commit
af7ef08f63
5 changed files with 810 additions and 65 deletions
20
Pipfile
Normal file
20
Pipfile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[[source]]
|
||||
url = "https://pypi.python.org/simple"
|
||||
verify_ssl = true
|
||||
name = "pypi"
|
||||
|
||||
[[source]]
|
||||
url = "https://www.piwheels.org/simple"
|
||||
verify_ssl = true
|
||||
name = "piwheels"
|
||||
|
||||
[requires]
|
||||
python_version = '3.7'
|
||||
|
||||
[packages]
|
||||
#openflexure-microscope-server = {path = "."}
|
||||
#TODO: decide if we want dev dependencies here or in setup.py
|
||||
openflexure-microscope-server = {editable = true, path = "."}
|
||||
|
||||
[dev-packages]
|
||||
#openflexure-microscope-server = {path = ".", editable=true, extras=["dev"]}
|
||||
Loading…
Add table
Add a link
Reference in a new issue