-
Notifications
You must be signed in to change notification settings - Fork 4
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
fix dependency installation by conversion from setup.cfg to pyproject.toml #70
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[build-system] | ||
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"] | ||
build-backend = "pbr.build" | ||
|
||
[project] | ||
requires-python = ">=3.8" | ||
name = "python-chi" | ||
authors = [ | ||
{name = "University of Chicago", email = "[email protected]"}, | ||
] | ||
description = "Helper library for Chameleon Infrastructure (CHI) testbed" | ||
dynamic = ["version"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Environment :: OpenStack", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: System Administrators", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
] | ||
readme = "README.rst" | ||
license = {file = "LICENSE"} | ||
|
||
dependencies = [ | ||
"fabric", | ||
"keystoneauth1", | ||
"openstacksdk", | ||
"paramiko", | ||
"python-blazarclient @ git+https://github.com/ChameleonCloud/python-blazarclient", | ||
"python-cinderclient", | ||
"python-glanceclient", | ||
"python-ironicclient", | ||
"python-manilaclient", | ||
"python-neutronclient", | ||
"python-novaclient", | ||
"python-swiftclient", | ||
"python-zunclient", | ||
"ipython", | ||
"ipywidgets", | ||
"networkx", | ||
"matplotlib", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"black", | ||
"pytest", | ||
"pytest-mock", | ||
"pytest-watch", | ||
"requests_mock" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://www.chameleoncloud.org" | ||
Documentation = "https://python-chi.readthedocs.io/en/latest/" | ||
Repository = "https://github.com/chameleoncloud/python-chi" | ||
|
||
[tool.setuptools] | ||
packages = ["chi"] |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,4 @@ | |
|
||
from setuptools import setup | ||
|
||
setup( | ||
setup_requires=["pbr"], | ||
pbr=True, | ||
version='{{VERSION_PLACEHOLDER}}' | ||
) | ||
setup(setup_requires=["pbr"]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had to change the invocation here, because if any arguments other than There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for pointing this out. I'm not sure if this changes how we were publishing to pypi, but I'll figure that out after merging. |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should say 3.10, Jupyter is using this at the moment, and that is typically our source of truth for is python-chi working.