-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dependencies, removed data placeholder, and added src directory
- Loading branch information
1 parent
1ee048f
commit 5f791d0
Showing
3 changed files
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Empty file.
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 |
---|---|---|
|
@@ -7,26 +7,35 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "missense_kinase_toolkit" | ||
description = "An ETL pipeline package to facilitate structure-based ML for human kinase property prediction" | ||
dynamic = ["version"] | ||
dynamic = ["0.0.1"] | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Jess White", email = "[email protected]" } | ||
] | ||
maintainers = [ | ||
{ name = "Jess White", email = "[email protected]" } | ||
] | ||
license = { text = "MIT" } | ||
# See https://pypi.org/classifiers/ | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
] | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
# Declare any run-time dependencies that should be installed with the package. | ||
#dependencies = [ | ||
# "importlib-resources;python_version<'3.10'", | ||
#] | ||
dependencies = [ | ||
"importlib-resources;python_version<='3.11'", | ||
"setuptools", | ||
"pydantic>=1.10,<2", | ||
"tqdm>=4.64.0", | ||
"pandas>=2,<3", | ||
"requests-cache>=0.9.7,<1", | ||
"requests>=2.28.1,<3", | ||
] | ||
|
||
# Update the urls once the hosting is set up. | ||
#[project.urls] | ||
#"Source" = "https://github.com/choderalab/missense_kinase_toolkit/" | ||
[project.urls] | ||
"Source" = "https://github.com/choderalab/missense_kinase_toolkit/" | ||
#"Documentation" = "https://missense_kinase_toolkit.readthedocs.io/" | ||
|
||
[project.optional-dependencies] | ||
|