-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: port pyclient build config to pyproject.toml (#1470)
* feat: port pyclient build config to pyproject.toml * Update src/client/packaging/pypi/pyproject.toml Co-authored-by: george <george.haff@gmail.com> * Update src/client/packaging/pypi/pyproject.toml Co-authored-by: george <george.haff@gmail.com> * Update src/client/packaging/pypi/pyproject.toml Co-authored-by: george <george.haff@gmail.com> * Update src/client/packaging/pypi/pyproject.toml Co-authored-by: george <george.haff@gmail.com> * Update src/client/packaging/pypi/pyproject.toml Co-authored-by: george <george.haff@gmail.com> * Update src/client/packaging/pypi/pyproject.toml Co-authored-by: george <george.haff@gmail.com> * fix: remove setuptools version pin and python >= 3.8 req * fix: omit dev version classifier metadata for pyclient * fix: small formats to pyclient build config * fix: add python 2 support to our classification * fix(client)+doc: update ci and changelog --------- Co-authored-by: george <george.haff@gmail.com>
- Loading branch information
1 parent
69835d1
commit e423cb4
Showing
5 changed files
with
57 additions
and
33 deletions.
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
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,44 @@ | ||
# This file was derived from the PyPA Sample Project | ||
# https://github.com/pypa/sampleproject | ||
|
||
# Guide (user-friendly): | ||
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/ | ||
|
||
# Specification (technical, formal): | ||
# https://packaging.python.org/en/latest/specifications/pyproject-toml/ | ||
|
||
|
||
# Choosing a build backend: | ||
# https://packaging.python.org/en/latest/tutorials/packaging-projects/#choosing-a-build-backend | ||
[build-system] | ||
# A list of packages that are needed to build your package: | ||
requires = ["setuptools"] # REQUIRED if [build-system] table is used | ||
# The name of the Python object that frontends will use to perform the build: | ||
build-backend = "setuptools.build_meta" # If not defined, then legacy behavior can happen. | ||
|
||
[project] | ||
name = "delphi_epidata" # REQUIRED, is the only field that cannot be marked as dynamic. | ||
version = "4.1.23" | ||
description = "A programmatic interface to Delphi's Epidata API." | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "David Farrow", email = "dfarrow0@gmail.com" }] | ||
maintainers = [ | ||
{ name = "Delphi Support", email = "delphi-support+pypi@andrew.cmu.edu" }, | ||
] | ||
# For a list of valid classifiers, see https://pypi.org/classifiers/ | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Science/Research", | ||
"Natural Language :: English", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
dependencies = ["aiohttp", "delphi-utils", "requests>=2.7.0", "tenacity"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/cmu-delphi/delphi-epidata" | ||
"Changelog" = "https://github.com/cmu-delphi/delphi-epidata/blob/main/src/client/packaging/pypi/CHANGELOG.md" |
This file was deleted.
Oops, something went wrong.