-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP - move to pyproject.toml #1336
base: dev
Are you sure you want to change the base?
Changes from 1 commit
4ee5593
b1be86c
eb1ca4d
9cee4b6
0717d4f
f794649
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pyjanitor" | ||
version = "0.26.0" | ||
description="Tools for cleaning pandas DataFrames" | ||
url="https://github.com/pyjanitor-devs/pyjanitor" | ||
license = {text = "MIT License"} | ||
requires-python = ">= 3.8" | ||
readme = 'README.md' | ||
dependencies = [ | ||
"pandas >= 2.0.0", | ||
"pandas_flavor", | ||
"multiple_dispatch", | ||
"scipy" | ||
] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wow! Is the dependency list really this small? I suspect it might be longer, though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i pulled it from `.requirements/base.in', based on information in setup.py |
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python" | ||
] | ||
authors = [ | ||
{name = "pyjanitor devs"}, | ||
{email = "[email protected]"}, | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://pyjanitor-devs.github.io/pyjanitor" | ||
Documentation = "https://mkdocs.org" | ||
samukweku marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Repository = "https://github.com/pyjanitor-devs/pyjanitor.git" | ||
Issues = "https://github.com/pyjanitor-devs/pyjanitor/issues" | ||
Changelog = "https://github.com/pyjanitor-devs/pyjanitor/blob/dev/CHANGELOG.md" | ||
|
||
[project.optional-dependencies] | ||
biology = ["biopython"] | ||
engineering = ["unyt"] | ||
spark = ["pyspark"] | ||
chemistry = ['tqdm'] | ||
samukweku marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[tool.black] | ||
exclude = ''' | ||
/( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL something new about the ecosystem today!
Does this have to be multi-line, btw? Just curious, it looks more like a single-line bash command.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i just did a copy and paste, but it's yaml, so it should just fit into one line