forked from pyreadline3/pyreadline3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
85 lines (75 loc) · 2.22 KB
/
Copy pathsetup.py
File metadata and controls
85 lines (75 loc) · 2.22 KB
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
# -*- coding: utf-8 -*-
# *****************************************************************************
# Copyright (C) 2003-2006 Gary Bishop.
# Copyright (C) 2006-2020 Jorgen Stenarson. <jorgen.stenarson@bostream.nu>
# Copyright (C) 2020 Bassem Girgis. <brgirgis@gmail.com>
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
# *****************************************************************************
import os
from platform import system
from setuptools import setup
_S = system()
if 'windows' != _S.lower():
raise RuntimeError('pyreadline3 is for Windows only, not {}.'.format(_S))
# BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
# update it when the contents of directories change.
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
#
name = 'UNKNOWN'
version = 'NONE'
description = 'NONE'
long_description = 'NONE'
authors = {}
license_name = 'NONE'
classifiers = 'NONE'
url = 'NONE'
download_url = 'NONE'
platforms = 'NONE'
keywords = 'NONE'
exec(
compile(
open('pyreadline3/release.py', 'r', encoding='utf-8').read(),
'pyreadline3/release.py',
'exec'
)
)
try:
import sphinx
from sphinx.setup_command import BuildDoc
cmd_class = {'build_sphinx': BuildDoc}
except ImportError:
cmd_class = {}
packages = [
'pyreadline3',
'pyreadline3.clipboard',
'pyreadline3.configuration',
'pyreadline3.console',
'pyreadline3.keysyms',
'pyreadline3.lineeditor',
'pyreadline3.modes',
'pyreadline3.test',
]
setup(
name=name,
version=version,
description=description,
long_description=long_description,
author=authors["Bassem"][0],
author_email=authors["Bassem"][1],
maintainer=authors["Bassem"][0],
maintainer_email=authors["Bassem"][1],
license=license_name,
classifiers=classifiers,
url=url,
download_url=download_url,
platforms=platforms,
keywords=keywords,
py_modules=['readline'],
packages=packages,
package_data={'pyreadline3': ['configuration/*']},
data_files=[],
cmdclass=cmd_class
)