-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (40 loc) · 1.42 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
# A build system is required to convert your code into a distributable package.
# setuptools is the oldest and most common build tool, but we also like Poetry
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cdstemplate"
version = "2.0.0"
description = "A template repo for data science and machine learning projects at UMass Center for Data Science."
readme = "README.md"
# What version of python does your library work with?
requires-python = ">=3.10"
# Metadata about your package in case you upload it to PYPI
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# All the dependencies needed for running your module go here
dependencies = [
"dvc>=2.42.0",
"numpy",
"pandas",
"scikit-learn",
]
[project.optional-dependencies]
# Extra dependencies only needed for running tests go here
test = ["pytest"]
# Dependencies that are useful only to developers, like an autoformatter and support for visualizations in jupyter notebooks go here
dev = [
"ruff",
"jupyter",
"matplotlib",
"seaborn",
"sphinx",
]
# If your project contains scripts you'd like to be available command line, you can define them here.
# The value must be of the form "<package_name>:<module_name>.<function>"
[project.scripts]
corpus-counter = "cdstemplate:corpus_counter_script.main_cli"