-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c90c623
commit 9e63959
Showing
6 changed files
with
61 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,7 @@ jobs: | |
- uses: pre-commit/[email protected] | ||
|
||
build: | ||
name: | ||
Build and test with Python ${{ matrix.python-version }} on ${{ | ||
name: Build and test with Python ${{ matrix.python-version }} on ${{ | ||
matrix.runs-on }} | ||
runs-on: ${{ matrix.runs-on }} | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
[build-system] | ||
build-backend = "hatchling.build" | ||
requires = [ | ||
"hatch-vcs", | ||
"hatchling" | ||
"hatchling", | ||
] | ||
build-backend = "hatchling.build" | ||
|
||
|
||
[project] | ||
name = "riemapp" | ||
description = "Manim powered complex mappings." | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Saransh Chopra", email = "[email protected]" }, | ||
{ name = "Agriya Khetarpal", email = "[email protected]" }, | ||
{ name = "Naman Priyadarshi", email = "[email protected]" }, | ||
{ name = "Onkar Mahapatra", email = "[email protected]" }, | ||
{ name = "Parth Tripathi", email = "[email protected]" }, | ||
] | ||
description = "Manim powered complex mappings." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
|
@@ -35,42 +33,44 @@ classifiers = [ | |
"Topic :: Scientific/Engineering", | ||
"Typing :: Typed", | ||
] | ||
dynamic = ["version"] | ||
dynamic = [ | ||
"version", | ||
] | ||
dependencies = [ | ||
"manim >=0.16.0", | ||
"manim>=0.16", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest >=6", | ||
"pytest-cov >=3", | ||
] | ||
dev = [ | ||
"pytest >=6", | ||
"pytest-cov >=3", | ||
"pytest>=6", | ||
"pytest-cov>=3", | ||
] | ||
docs = [ | ||
"markdown-callouts>=0.2.0", | ||
"markdown-callouts>=0.2", | ||
"mkdocs>=1.3.1", | ||
"mkdocs-include-exclude-files>=0.0.1", | ||
"mkdocs-jupyter>=0.21.0", | ||
"mkdocs-jupyter>=0.21", | ||
"mkdocs-material>=8.3.9", | ||
"mkdocstrings-python>=0.7.1", | ||
"mkdocstrings-python-legacy>=0.2.3", | ||
"pymdown-extensions>=9.5", | ||
] | ||
|
||
test = [ | ||
"pytest>=6", | ||
"pytest-cov>=3", | ||
] | ||
[project.urls] | ||
Homepage = "https://github.com/Saransh-cpp/riemapp" | ||
"Bug Tracker" = "https://github.com/Saransh-cpp/riemapp/issues" | ||
Discussions = "https://github.com/Saransh-cpp/riemapp/discussions" | ||
Changelog = "https://riemapp.readthedocs.io/en/latest/changelog/" | ||
Discussions = "https://github.com/Saransh-cpp/riemapp/discussions" | ||
Documentation = "https://riemapp.readthedocs.io/" | ||
Homepage = "https://github.com/Saransh-cpp/riemapp" | ||
|
||
[tool.hatch] | ||
version.source = "vcs" | ||
build.hooks.vcs.version-file = "riemapp/version.py" | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
|
@@ -86,7 +86,6 @@ testpaths = [ | |
"tests", | ||
] | ||
|
||
|
||
[tool.mypy] | ||
files = "riemapp" | ||
python_version = "3.8" | ||
|
@@ -103,7 +102,3 @@ disallow_untyped_defs = false | |
disallow_untyped_calls = false | ||
disallow_subclassing_any = false | ||
ignore_missing_imports = true | ||
|
||
|
||
[tool.isort] | ||
profile = "black" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters