-
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
Replaces setup.py with pyproject.toml #236
Conversation
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.
This looks good to me, happy to approve.
Left one very small question and I think we can probably also remove dataclasses
from requirements.txt
if we're uping the python version required
pyproject.toml
Outdated
name = "gptables" | ||
authors = [ | ||
{name = "ASAP", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "ASAP", email = "[email protected]"} | ||
] |
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.
Thank you for updating this in line with current policy
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.
Just a thought, should we expand the acronym in the name section?
{name = "ASAP", email = "[email protected]"} | ||
] | ||
dynamic = ["version"] | ||
requires-python = '>=3.7' |
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 agree with this change. There may still be a small number of users on python 3.6 but they can use an earlier version of the package if they can't update their python version
setup.py
Outdated
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.
Are we able to do an editable install without the setup.py
file?
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.
Answering my own question - this seems to work
No description provided.