Skip to content

Commit fba4255

Browse files
committed
cleaning up pyproject.toml to pypi package build warnings
1 parent 42a9c17 commit fba4255

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

pyproject.toml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,16 @@ version = "0.4.0"
88
description = "A tool for working with sequencing specifications"
99
readme = "README.md"
1010
requires-python = ">=3.12"
11-
license = { text = "MIT" }
12-
authors = [{ name = "Sina Booeshaghi", email = "abooesha@caltech.edu" }]
13-
maintainers = [{ name = "Sina Booeshaghi", email = "abooesha@caltech.edu" }]
11+
license = "MIT"
12+
authors = [{ name = "Sina Booeshaghi", email = "sinab@berkeley.edu" }]
13+
maintainers = [{ name = "Sina Booeshaghi", email = "sinab@berkeley.edu" }]
1414
keywords = ["bioinformatics", "sequencing", "specifications"]
1515
classifiers = [
1616
"Environment :: Console",
1717
"Intended Audience :: Science/Research",
18-
"License :: OSI Approved :: MIT License",
1918
"Operating System :: OS Independent",
2019
"Programming Language :: Python :: 3.12",
2120
"Programming Language :: Python :: 3.13",
22-
"Programming Language :: Python :: 3.14",
23-
"Programming Language :: Python :: 3.15",
2421
"Topic :: Scientific/Engineering :: Bio-Informatics",
2522
"Topic :: Utilities",
2623
]
@@ -50,21 +47,21 @@ dev = [
5047
]
5148

5249
[project.urls]
53-
Homepage = "https://github.com/sbooeshaghi/seqspec"
54-
Repository = "https://github.com/sbooeshaghi/seqspec.git"
50+
Homepage = "https://pachterlab.github.io/seqspec/"
51+
Repository = "https://github.com/pachterlab/seqspec.git"
5552

5653
[project.scripts]
5754
seqspec = "seqspec.main:main"
5855

5956
[tool.setuptools]
60-
packages = ["seqspec"]
61-
package-dir = { "" = "." }
57+
license-files = ["LICENSE"]
58+
59+
[tool.setuptools.packages.find]
60+
include = ["seqspec", "seqspec.*"]
6261

6362
[tool.setuptools.package-data]
6463
"seqspec" = ["schema/*"]
6564

66-
67-
6865
[tool.pytest.ini_options]
6966
testpaths = ["tests"]
7067
python_files = ["test_*.py"]
@@ -101,6 +98,4 @@ dev = [
10198
"pre-commit>=4.2.0",
10299
"build>=1.0.0",
103100
"ruff>=0.9.0",
104-
]
105-
106-
101+
]

0 commit comments

Comments
 (0)