Skip to content

Commit

Permalink
single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Feb 28, 2024
1 parent 2e7cfb7 commit e89c353
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'

[project]
authors = [{ name = "DataCebo, Inc.", email = "[email protected]" }]
authors = [{ name = 'DataCebo, Inc.', email = '[email protected]' }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: Free for non-commercial use',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
description = "Benchmark tabular synthetic data generators using a variety of datasets"
keywords = ["machine learning", "synthetic data generation", "benchmark", "generative models"]
name = "sdgym"
version = "0.7.1.dev0"
license = { text = "BSL-1.1" }
description = 'Benchmark tabular synthetic data generators using a variety of datasets'
keywords = ['machine learning', 'synthetic data generation', 'benchmark', 'generative models']
name = 'sdgym'
version = '0.7.1.dev0'
license = { text = 'BSL-1.1' }
requires-python = '>=3.8,<3.12'
readme = "README.md"
urls = { "Homepage" = "https://github.com/sdv-dev/SDGym" }
readme = 'README.md'
urls = { 'Homepage' = 'https://github.com/sdv-dev/SDGym' }

dependencies = [
'appdirs>=1.3,<2',
Expand Down Expand Up @@ -53,11 +53,11 @@ dependencies = [
]

[project.entry-points]
sdgym = { main = "sdgym.cli.__main__:main" }
sdgym = { main = 'sdgym.cli.__main__:main' }

[project.optional-dependencies]

dask = ["dask", "distributed"]
dask = ['dask', 'distributed']

test = [
'pytest>=3.4.2',
Expand All @@ -68,8 +68,8 @@ test = [

dev = [
# dask
"dask",
"distributed",
'dask',
'distributed',

# test
'pytest>=3.4.2',
Expand Down Expand Up @@ -125,8 +125,8 @@ dev = [

all = [
# dask
"dask",
"distributed",
'dask',
'distributed',

# test
'pytest>=3.4.2',
Expand Down Expand Up @@ -191,9 +191,9 @@ namespaces = false
line_length = 99
lines_between_types = 0
multi_line_output = 4
not_skip = ["__init__.py"]
not_skip = ['__init__.py']
use_parentheses = true

[tool.pydocstyle]
convention = "google"
add-ignore = ["D107", "D407", "D417"]
convention = 'google'
add-ignore = ['D107', 'D407', 'D417']

0 comments on commit e89c353

Please sign in to comment.