-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 1.08 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
"""Uses setuptools to install the pympanim module"""
import setuptools
import os
setuptools.setup(
name="pympanim",
version="0.1.0",
author="Timothy Moore",
author_email="mtimothy984@gmail.com",
description="Multiprocessing-friendly animations",
license="CC0",
keywords="pympanim animations video mp4",
url="https://github.com/tjstretchalot/pympanim",
packages=["pympanim"],
long_description=open(os.path.join(os.path.dirname(__file__), "README.md")).read(),
long_description_content_type="text/markdown",
install_requires=["pyzmq", "pytypeutils", "Pillow", "psutil"],
classifiers=(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Topic :: Utilities",
),
python_requires=">=3.9",
)