-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1.19 KB
/
setup.py
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
import pathlib
from setuptools import setup, find_namespace_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "Readme.md").read_text(encoding="utf-8")
setup(
name="lottie_specs",
version="1.0.1",
description="Tools to load the Lottie standard specs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lottie/lottie-spec-python",
author="Lottie Animation Community",
packages=find_namespace_packages(where="src"),
package_data={"lottie_specs.data": ["*.json"]},
package_dir={"": "src"},
python_requires=">=3.10, <4",
scripts=[
"bin/render_shape.py",
"bin/schema-merge.py",
"bin/schema-validate.py",
],
extras_require={
"docs": [
"lxml==4.9.3",
"source_translator==1.0.0",
"graphviz==0.20.1",
"mkdocs==1.5.3",
"latex2mathml==3.77.0"
],
},
project_urls={
"Bug Reports": "https://github.com/lottie/lottie-spec-python/issues",
"Source": "https://github.com/lottie/lottie-spec-python",
},
# entry_points={
# "mkdocs.plugins": []
# }
)