forked from JonathonReinhart/spice-record
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.25 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
import os
from setuptools import setup
import spicerecord.version
def read_project_file(path):
proj_dir = os.path.dirname(__file__)
path = os.path.join(proj_dir, path)
with open(path, 'r') as f:
return f.read()
setup(
name = 'spicerecord',
version = spicerecord.version.__version__,
python_requires='>=3.5',
description = 'Record SPICE session to MP4 video',
long_description = read_project_file('README.md'),
long_description_content_type = 'text/markdown',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
],
license = 'GPL v2 with wrapper exception',
author = 'Jonathon Reinhart',
author_email = '[email protected]',
url = 'https://github.com/JonathonReinhart/spice-record',
packages = ['spicerecord'],
entry_points = {
'console_scripts': [
'spice-record = spicerecord.cli:main',
]
},
install_requires = [
'libvirt-python',
'PyGObject',
# 'SpiceClientGLib' -- Not sure how to express this here.
],
)