Skip to content

Commit dd2d8c8

Browse files
committed
Updated package structure to modern best practices
1 parent 5739ef7 commit dd2d8c8

File tree

8 files changed

+54
-37
lines changed

8 files changed

+54
-37
lines changed

.github/workflows/python_package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.10"]
15+
python-version: ["3.10", "3.11"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
You should also add project tags for each release in Github, see [Managing releases in a repository](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository).
88

99
## [Unreleased]
10+
### Added
1011
- Added example auto-built Sphinx documentation in the `docs` folder
12+
### Changed
13+
- All build and packaging switched to use only pyproject.toml
14+
- Minimum python version changed to 3.10
15+
### Removed
16+
- Removed setup.cfg
17+
1118
## [1.0.0] - 2022-05-23
1219
### Added
1320
- README and CHANGELOG

pyproject.toml

+45-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
1-
# This file only needs exactly the following AT MINIMUM.
2-
# You can include other sections, but since pyproject.toml is still experimental, you may want to use setup.cfg instead.
1+
# A build system is required to convert your code into a distributable package.
2+
# setuptools is the oldest and most common build tool, but we also like Poetry
33
[build-system]
4-
requires = ["setuptools"]
5-
build-backend = "setuptools.build_meta"
4+
requires = ["setuptools >= 6.10"]
5+
build-backend = "setuptools.build_meta"
6+
7+
[project]
8+
name = "cdstemplate"
9+
version = "1.0.0"
10+
description = "A template repo for data science and machine learning projects at UMass Center for Data Science."
11+
readme = "README.md"
12+
13+
# What version of python does your library work with?
14+
requires-python = ">=3.10"
15+
16+
# Metadata about your package in case you upload it to PYPI
17+
classifiers = [
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: OS Independent",
21+
]
22+
23+
# All the dependencies needed for running your module go here
24+
dependencies = [
25+
"dvc==2.10.2",
26+
"numpy",
27+
"pandas",
28+
"scikit-learn",
29+
]
30+
31+
[project.optional-dependencies]
32+
# Extra dependencies only needed for running tests go here
33+
test = ["pytest"]
34+
35+
# Dependencies that are useful only to developers, like an autoformatter and support for visualizations in jupyter notebooks go here
36+
dev = [
37+
"black",
38+
"jupyter",
39+
"matplotlib",
40+
"seaborn",
41+
"sphinx",
42+
]
43+
44+
# If your project contains scripts you'd like to be available command line, you can define them here
45+
[project.scripts]
46+
corpus-counter = "cdstemplate:corpus_counter_script"

setup.cfg

-31
This file was deleted.
File renamed without changes.

cdstemplate/corpus_counter_script.py src/cdstemplate/corpus_counter_script.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def main(csv_out, documents, case_insensitive=False):
5454
)
5555

5656

57-
# The entry point of your script - if a user runs it from the commane line, this is what will be run.
57+
# The entry point of your script - if a user runs it from the command line, this is what will be run.
5858
if __name__ == "__main__":
5959
args = parser.parse_args()
6060
utils.configure_logging()
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)