-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate nearly all project metadata to pyproject.toml
- Loading branch information
Showing
96 changed files
with
947,428 additions
and
947,429 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
[project] | ||
name = "chilife" | ||
description = 'A package for modeling non-canonical amino acid side chain ensembles.' | ||
readme = 'README.md' | ||
license= {name = 'GNU GPLv3', file = 'LICENSE'} | ||
authors=[{name = 'Maxx Tessmer', email='[email protected]'}, | ||
{name = 'Stefan Stoll', email='[email protected]'}] | ||
keywords=['Spin-label', 'EPR', 'DEER', 'PELDOR', 'Side-chain'] | ||
dynamic = ["version", "readme"] | ||
requires-python = ">= 3.8,<=3.11" | ||
dynamic = ["version"] | ||
requires-python = ">= 3.8,<3.12" | ||
dependencies = ['numpy>=1.23.0', | ||
'scipy>=1.6.3', | ||
'matplotlib>=3.3.4', | ||
|
@@ -16,7 +17,6 @@ dependencies = ['numpy>=1.23.0', | |
'pytest>=6.2.2', | ||
'memoization>=0.3.1', | ||
'argparse>=1.4.0', | ||
'setuptools>=53.0.0', | ||
'igraph>=0.11.2', | ||
'rtoml>=0.9.0'] | ||
|
||
|
@@ -28,7 +28,14 @@ classifiers=['License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | |
|
||
[project.urls] | ||
homepage = 'https://github.com/StollLab/chiLife' | ||
documentation = "stolllab.github.io/chiLife/" | ||
documentation = "https://stolllab.github.io/chiLife/" | ||
|
||
[tool.setuptools] | ||
script-files = ['scripts/update_rotlib.py', 'scripts/oldProteinIC.py'] | ||
|
||
[tool.setuptools.package-data] | ||
chilife = ['data/*', 'data/*/*', 'data/*/*/*'] | ||
|
||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "chilife.__version__"} | ||
|
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
Oops, something went wrong.