-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
87 lines (76 loc) · 2.52 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# type: ignore
from setuptools import setup
from setuptools.command.install import install
from setuptools.command.sdist import sdist
from on_publish import pre_sdist, post_sdist
from on_install import post_install
class SdistCommand(sdist):
def run(self):
pre_sdist(self)
super().run()
post_sdist(self)
class InstallCommand(install):
def run(self):
# pre_install(self)
super().run()
post_install(self)
def readme():
with open('README.md') as f:
return f.read()
setup(
name='akashi-engine',
version='0.4.5a2',
description='A next-generation video editor',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: C++',
'Programming Language :: Python',
'Operating System :: POSIX :: Linux',
'Topic :: Multimedia',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: Editors',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Multimedia :: Graphics :: Viewers',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Topic :: Multimedia :: Sound/Audio :: Editors',
'Topic :: Multimedia :: Sound/Audio :: Mixers',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Capture',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Multimedia :: Video :: Non-Linear Editor'
],
keywords='video nle non-linear video-editor editor editing audio sound media graphics multimedia',
url='https://github.com/akashi-org/akashi',
author='crux14',
license='Apache-2.0',
packages=[
'akashi_cli',
'akashi_core',
'akashi_core.pysl',
'akashi_core.pysl.compiler',
'akashi_core.elem',
'akashi_core.elem.layer',
],
package_data={
"akashi_cli": ["py.typed"],
"akashi_core": ["py.typed"],
},
cmdclass={
'sdist': SdistCommand,
'install': InstallCommand
},
install_requires=[],
python_requires='>=3.11,<3.12',
entry_points={
'console_scripts': [
'akashi = akashi_cli:akashi_cli'
],
},
)