-
Notifications
You must be signed in to change notification settings - Fork 19
1110 Migrate Python packages to use pyproject.toml for builds #1409
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
Open
HenrZu
wants to merge
41
commits into
main
Choose a base branch
from
1110-pyproject-migration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
61508d1
first try
HenrZu b521b94
move urls and reset rtd build
HenrZu ca1b612
allow py 3.8
HenrZu f7aef7f
fix py version for pylint test
HenrZu c70c86f
wrong syntax to fix cmake version
HenrZu 09cc12c
.
HenrZu 40668e7
.
HenrZu 64609bc
.
HenrZu 36c6fd4
.
HenrZu 0f1470c
.
HenrZu b6037d7
.
HenrZu be760d5
.
HenrZu 36f10d9
.
HenrZu 2cf81c2
.
HenrZu 5eb7aef
.
HenrZu 928ee52
.
HenrZu 301ec91
.
HenrZu 152b9f6
.
HenrZu 1b183a3
..
HenrZu b39c36f
.
HenrZu 57bc060
Merge remote-tracking branch 'origin/main' into 1110-pyproject-migration
HenrZu 9e94b03
.
HenrZu 87764de
.
HenrZu 75b16f0
1 central run_pylint script.
HenrZu fe6268d
spdlog and doc links
HenrZu 1c1d0bd
rm json static, add comment for installation
HenrZu 2b0f4fd
rpath platform dependent
HenrZu 522e91f
rm redundant rpath calls
HenrZu 585d97c
set rpath for cpp libs, install from targetfile
HenrZu 8e08f8e
run_pylint direct in pycode dir
HenrZu ed17c50
[ci skip] comment destination "."
HenrZu 4edef4c
[ci skip] Update pycode/memilio-simulation/CMakeLists.txt
HenrZu 5fb315f
rm spdlog block since its static
HenrZu 68117cc
revert last commit
HenrZu 1df2b07
force spdlog as static
HenrZu f04f94c
revert last commit again
HenrZu bc027b2
some more rpath
HenrZu 4ea83a0
try without doubled list
HenrZu 63dd6e8
adjust build spdlog in 3rd party for python
HenrZu 5459699
rm
HenrZu 31023f0
[ci skip] update doc if installed in not editable mode
HenrZu 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,61 @@ | ||
| [build-system] | ||
| requires = ["setuptools>=68", "wheel"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "memilio-epidata" | ||
| version = "1.0.0" | ||
| description = "Part of MEmilio project, reads epidemiological data from different official and unofficial sources." | ||
| readme = "README.rst" | ||
| requires-python = ">=3.8" | ||
| license = { text = "Apache-2.0" } | ||
| authors = [{ name = "MEmilio Team" }] | ||
| maintainers = [ | ||
| { email = "martin.kuehn@dlr.de" } | ||
| ] | ||
| dependencies = [ | ||
| "pandas>=2.0.0", | ||
| "pyarrow", | ||
| "matplotlib", | ||
| "tables", | ||
| "numpy>=1.22,<1.25", | ||
| "openpyxl", | ||
| "xlrd", | ||
| "xlsxwriter", | ||
| "requests", | ||
| "pyxlsb", | ||
| "wget", | ||
| "twill==3.1", | ||
| "PyQt6-sip<13.9", | ||
| "PyQt6", | ||
| "python-calamine", | ||
| "python-magic-bin; sys_platform == 'win32'", | ||
| "python-magic; sys_platform != 'win32'" | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| dev = [ | ||
| "pyfakefs>=4.6,<5.3.3", | ||
| "coverage>=7.0.1", | ||
| "pylint>=2.13.0,<2.16", | ||
| "pylint_json2html==0.4.0" | ||
| ] | ||
|
|
||
| [project.scripts] | ||
| getcasedata = "memilio.epidata.getCaseData:main" | ||
| getpopuldata = "memilio.epidata.getPopulationData:main" | ||
| getjhdata = "memilio.epidata.getJHData:main" | ||
| getdividata = "memilio.epidata.getDIVIData:main" | ||
| getsimdata = "memilio.epidata.getSimulationData:main" | ||
| cleandata = "memilio.epidata.cleanData:main" | ||
| getcommutermobility = "memilio.epidata.getCommuterMobility:main" | ||
| getvaccinationdata = "memilio.epidata.getVaccinationData:main" | ||
| gethospitalizationdata = "memilio.epidata.getHospitalizationData:main" | ||
|
|
||
| [project.urls] | ||
| Homepage = "https://github.com/SciCompMod/memilio" | ||
| Team = "https://memilio.readthedocs.io/en/latest/team.html" | ||
|
|
||
| [tool.setuptools.packages.find] | ||
| where = ["."] | ||
| include = ["memilio*"] |
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.
Uh oh!
There was an error while loading. Please reload this page.