-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 861 Bytes
/
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
from setuptools import setup
setup(
name='stream-compiler',
packages=['streamcompiler'],
version='0.1.0',
description='A video editor based on a human writeable script language',
author='David Keijser',
author_email='[email protected]',
url='https://github.com/keis/stream-compiler',
license='ISC',
zip_safe=False,
entry_points={
'console_scripts': [
'streamc = streamcompiler.__main__:main'
]
},
python_requires=">=3.6",
install_requires=[
'py-scfg',
'PyGObject'
],
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video'
],
)