-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
47 lines (45 loc) · 1.09 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
41
42
43
44
45
46
47
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="gif",
version="23.03.0",
description="The matplotlib Animation Extension",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/maxhumber/gif",
author="Max Humber",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Graphics",
],
keywords=[
"gif",
"gifs",
"animation",
"PIL",
"pillow",
"matplotlib",
],
py_modules=["gif"],
python_requires=">=3.9",
install_requires=["matplotlib>=3.5,<4.0", "Pillow>=9.1"],
extras_require={
"dev": [
"mypy",
"isort",
"pyright",
"black",
"matplotlib",
"pandas",
"pytest",
],
"test": [
"matplotlib",
"pandas",
"pytest",
],
},
)