-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 1.19 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sciaudit"
version = "0.1.0"
authors = [
{ name = "Lucas Hoffnung Bernardo", email = "lumatizerh@hotmail.com" },
]
description = "Auditor de integridade científica para código e notebooks Python (vazamento de dados, p-hacking, reprodutibilidade)."
readme = "README.md"
keywords = ["data-science", "lint", "integrity", "reproducibility", "machine-learning"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/lbhoffnung/SciAudit"
"Bug Tracker" = "https://github.com/lbhoffnung/SciAudit/issues"
[project.scripts]
sciaudit = "sciaudit.cli.main:main"
[tool.setuptools.packages.find]
include = ["sciaudit*"]
exclude = ["corpus*", "tests*", "examples*", "tools*", "test_data*"]