-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (101 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
109 lines (101 loc) · 2.46 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["pip==22.3.1", "setuptools==65.6.3", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "cognarai"
dynamic = ["version"]
description = """\
Cognitive robotic learning framework in Isaac Sim\
"""
authors = [
{name = "Duc Than"},
]
readme = "README.md"
license = {text = "BSD 3-Clause License"}
requires-python = ">=3.8"
keywords = [
"cognitive learning",
"robotics",
"manifold learning",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Differential Geometry",
"Topic :: Scientific/Engineering :: Robotics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
]
[project.urls]
#homepage =
[project.optional-dependencies]
dev = [
"black[jupyter]==22.3.0",
"flake8==5.0.4",
"flake8-bugbear==22.12.6",
"flake8-docstrings==1.6.0",
"flake8-import-order==0.18.2",
"flake8-pyproject==1.2.2",
"isort==5.11.5",
"matplotlib",
"pre-commit",
"pytest==7.2.0",
"pytest-cov==4.0.0",
]
docs = [
"docutils==0.16",
"ipykernel==6.4.2",
"myst-parser==0.16.1",
"nbsphinx==0.8.7",
"sphinx==4.2.0",
"sphinx_rtd_theme==1.0.0",
"sphinxcontrib-katex==0.8.6",
]
ci = [
"build==0.8.0",
"pip==22.3.1",
"setuptools==65.6.3",
"wheel==0.38.4",
]
all = [
"cognarai[backends,dev]",
]
[tool.setuptools.dynamic]
version = { attr = "cognarai.__version__" }
[tool.setuptools_scm]
write_to = "src/cognarai/_version.py"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.black]
include = '\.py$'
line-length = 79
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 79
multi_line_output = 3
profile = "pycharm"
use_parentheses = true
[tool.flake8]
application_import_names = "cognarai"
docstring-convention = "google"
exclude = [
"examples/notebooks/*.py",
"build"
]
ignore = ["B024", "B027", "D1", "E203", "E501", "W503"]
import_order_style = "pycharm"
max-line-length = 79
select = ["B", "B950", "C", "D", "E", "F", "W"]