-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
90 lines (80 loc) · 3.44 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
88
89
90
#!/usr/bin/env python3
import sys
if sys.version_info < (3, 2):
sys.exit('Kazam requires Python 3.2 or newer')
import os
here = os.path.dirname(os.path.realpath(__file__))
from distutils.core import setup
from DistUtilsExtra.command import build_extra, build_i18n, build_help, build_icons
import hiq
import re
import glob
try:
lines = open("kazam/version.py").readlines()
for line in lines:
if line.startswith('VERSION'):
VERSION = re.search(r"VERSION = '(.*)'", line).group(1)
break
except:
VERSION = "1.0.0"
def read_file(filename: str):
try:
lines = []
with open(filename) as file:
lines = file.readlines()
lines = [line.rstrip() for line in lines if not line.startswith("#")]
return lines
except:
return []
setup(name='kazam',
version=VERSION,
description='A screencasting program created with design in mind.',
author='Henry Fuheng Wu, David Klasinc',
author_email='wufuheng@gmail.com',
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
install_requires=read_file(f"{here}/requirements.txt"),
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture',
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
'Topic :: Multimedia :: Video :: Capture',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords='screencast screenshot capture audio sound video recorder kazam OCR webcam',
url='https://github.com/henrywoo/kazam',
license='Apache-2.0',
scripts=['bin/kazam'],
packages=['kazam',
'kazam.pulseaudio',
'kazam.backend',
'kazam.frontend',
'kazam.data',
],
data_files=[('share/kazam/ui/', glob.glob('data/ui/*ui')),
('share/kazam/sounds/', glob.glob('data/sounds/*ogg')),
('share/icons/gnome/scalable/apps/', glob.glob('data/icons/scalable/*svg')),
],
package_data={
'kazam': ['data/ui/*ui', 'data/sounds/*ogg', 'data/icons/scalable/*svg'],
},
include_package_data=True,
cmdclass={'build': build_extra.build_extra,
'build_i18n': build_i18n.build_i18n,
'build_help': build_help.build_help,
'build_icons': build_icons.build_icons}
)