-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (45 loc) · 1.42 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
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
packages = find_packages()
READMEME = """sol is an interactive database of clips
it lets you organize and search for clips plus keep associated parameters, cue points, loop points, thumbnails and tags
it controls playback and adds some missing features to re[sol]ume
MIT licensed
# setup instructions
you will need `ffmpeg` and its associated `ffprobe`
`pip install sol_vj`"""
config = {
'name': 'sol_vj',
'description': 'sol - fixes for resolume',
'long_description': READMEME,
'author': 'pussinboots',
'author_email': 'mkaynospam@gmail.com',
'url': 'https://github.com/pussinboot/sol',
'license': 'MIT',
'version': '2.1.5',
'install_requires': [
'python-osc>=1.6',
'lxml>=3.6.0',
'Pillow>=4.1.0',
'python-rtmidi >= 1.1.0'
],
'packages': packages,
'package_data': {
'sol.gui.tk_gui': ['sample_clip.png', 'sample_thumb.png'],
},
'classifiers': [
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
],
'keywords': 'vj, resolume, video',
'entry_points': {
'console_scripts': [
'sol = sol.test_gui:main',
'sol_mt = sol.mt_gui:main',
'sol_cl = sol.magi:main'
],
},
}
setup(**config)