-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pwcode"
description = "Get Latest Updates from PapersWithCode"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
dynamic = ["version", "dependencies", "optional-dependencies"]
authors = [
{name = "Dhanush Kovi"}
]
maintainers = [
{name = "Aakash Jammula"}
]
keywords = [
"pwcode",
"PapersWithCode",
"pwcode-latest",
"ml-papers",
"ml-research",
"machine-learning",
"artificial-intelligence",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Repository = "https://github.com/dkvc/pwcode"
[tool.setuptools.dynamic]
version = {attr = "pwcode.__version__"}
dependencies = {file = "requirements.txt"}
optional-dependencies.dev = {file = "dev-reqs.txt"}