Skip to content

Commit a4c3bb0

Browse files
committed
update packaging method
1 parent b00d718 commit a4c3bb0

File tree

4 files changed

+35
-17
lines changed

4 files changed

+35
-17
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
graft manimlib
2+
recursive-exclude manimlib *.pyc *.DS_Store

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

+30-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,43 @@
11
[metadata]
22
name = manimgl
3+
version = 1.0.1
34
author = Grant Sanderson
4-
author-email= [email protected]
5-
summary = Animation engine for explanatory math videos
6-
description-file = README.md
7-
description-content-type = text/markdown; charset=UTF-8
8-
home-page = https://github.com/3b1b/manim
5+
author_email= [email protected]
6+
description = Animation engine for explanatory math videos
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown; charset=UTF-8
9+
home_page = https://github.com/3b1b/manim
910
project_urls =
1011
Bug Tracker = https://github.com/3b1b/manim/issues
1112
Documentation = https://3b1b.github.io/manim/
1213
Source Code = https://github.com/3b1b/manim
1314
license = MIT
1415

15-
[files]
16-
packages = manimlib
17-
extra_files = requirements.txt
16+
[options]
17+
packages = find:
18+
include_package_data=True
19+
install_requires =
20+
argparse
21+
colour
22+
numpy
23+
Pillow
24+
scipy
25+
sympy
26+
tqdm
27+
mapbox-earcut
28+
matplotlib
29+
moderngl
30+
moderngl_window
31+
pydub
32+
pyyaml
33+
screeninfo
34+
pyreadline; sys_platform == 'win32'
35+
validators
36+
ipython
37+
PyOpenGL
38+
manimpango>=0.2.0,<0.4.0
1839

19-
[entry_points]
40+
[options.entry_points]
2041
console_scripts =
2142
manimgl = manimlib.__main__:main
2243
manim-render = manimlib.__main__:main

setup.py

-8
This file was deleted.

0 commit comments

Comments
 (0)