-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24c5b55
commit b36f3e9
Showing
3 changed files
with
51 additions
and
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "python-terrier" | ||
description="PyTerrier" | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{name = "Craig Macdonald", email = "craig.macdonald@glasgow.ac.uk"}, | ||
] | ||
maintainers = [ | ||
{name = "Craig Macdonald", email = "craig.macdonald@glasgow.ac.uk"}, | ||
] | ||
readme = "README.md" | ||
classifiers = [ | ||
"Topic :: Text Processing", | ||
"Topic :: Text Processing :: Indexing", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", | ||
"Operating System :: OS Independent", | ||
] | ||
dynamic = ["version", "dependencies"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "pyterrier.__version__"} | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
#package_data={'': ['LICENSE.txt', 'requirements.txt', 'requirements-test.txt']} | ||
#include_package_data=True | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["tests"] | ||
|
||
[tool.setuptools.package-data] | ||
mypkg = ["README.md", "LICENSE.txt"] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/terrier-org/pyterrier" | ||
"Bug Tracker" = "https://github.com/terrier-org/pyterrier/issues" | ||
Changelog = "https://github.com/terrier-org/pyterrier/releases" | ||
CI = "https://github.com/terrier-org/pyterrier/actions" | ||
|
||
[project.entry-points."pyterrier.java.init"] | ||
"pyterrier.java" = "pyterrier.java:CoreJavaInit" | ||
"pyterrier.terrier.java" = "pyterrier.terrier.java:TerrierJavaInit" |