-
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
61177ec
Replaces setup.py with pyproject.toml
danmilne1 666ff60
Fixes typo
danmilne1 578e32a
Exapnds ASAP acronym
danmilne1 672f778
Removes requirements.txt and removes dataclasses as dependency
danmilne1 dcdbeb6
Merge branch 'dev' of https://github.com/best-practice-and-impact/gpt…
danmilne1 0a0a901
Updates changelog
danmilne1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["test"] | ||
|
||
[project] | ||
name = "gptables" | ||
authors = [ | ||
{name = "Analysis Standards and Pipelines", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Analysis Standards and Pipelines", email = "[email protected]"} | ||
] | ||
dynamic = ["version"] | ||
requires-python = '>=3.7' | ||
description = 'Simplifying good practice in statistical tables.' | ||
readme = "README.rst" | ||
license = {text = "MIT License"} | ||
keywords=["reproducible", "tables", "excel", "xlsxwriter", "reproducible-analytical-pipelines"] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent" | ||
] | ||
dependencies = [ | ||
"pandas>=0.25.3", | ||
"xlrd>=1.2.0", | ||
"XlsxWriter>=1.2.6", | ||
"pyyaml>=3.12" | ||
] | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"sphinx>=2", | ||
"sphinx_rtd_theme" | ||
] | ||
testing = [ | ||
"sphinx>=2", | ||
"sphinx_rtd_theme", | ||
"coverage", | ||
"pytest>=6.2.5", | ||
"pytest-cov" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/best-practice-and-impact/gptables" | ||
Documentation = "https://gptables.readthedocs.io/en/latest/" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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