-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.03 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
from setuptools import setup, find_packages
from os.path import join as opj
NAME = 'pltmov'
DESCR = 'Pyplot to FFmpeg wrapper for easy animation'
packages = [NAME]+[f'{NAME}.'+i for i in find_packages(NAME)]
with open(opj(NAME, '_version.py')) as f:
exec(f.read())
setup(
name = NAME,
version = __version__,
author = 'Leo Komissarov',
url = f'https://github.com/oiao/{NAME}',
download_url = f'https://github.com/oiao/{NAME}/archive/master.zip',
description = DESCR,
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
],
keywords = ['animation', 'ffmpeg', 'plotting', 'visualization', 'pyplot', 'matplotlib'],
python_requires = '>=3.6',
install_requires = ['matplotlib'],
packages = packages,
package_dir = {NAME : NAME},
package_data = {NAME : ['tests/*']},
tests_requre = ['numpy'],
# scripts = [opj('scripts', NAME)],
)