-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
37 lines (34 loc) · 978 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "industry_benchmarks"
description = ""
readme = ""
authors = [{name = "The OpenFE developers", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
]
urls = {Homepage = "https://industrybenchmarks2024.readthedocs.io/en/latest/"}
requires-python = ">= 3.9"
dependencies = [
]
version = "0.1"
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
namespaces = false
where = ["industry_benchmarks"]
include = ["utils"]