FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bpython/setup.py at 0.12-bugfix · bpython/bpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
bpython
/
bpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
252
Star
2.8k
Code
Issues
144
Pull requests
5
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
bpython
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
165 lines (137 loc) · 5.22 KB
Breadcrumbs
bpython
/
setup.py
Copy path
File metadata and controls
executable file
·
165 lines (137 loc) · 5.22 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import
os
import
platform
from
distutils
.
command
.
build
import
build
from
bpython
import
__version__
,
package_dir
try
:
from
setuptools
import
setup
using_setuptools
=
True
except
ImportError
:
from
distutils
.
core
import
setup
using_setuptools
=
False
try
:
from
distutils
.
command
.
build_py
import
build_py_2to3
as
build_py
except
ImportError
:
from
distutils
.
command
.
build_py
import
build_py
try
:
from
babel
.
messages
.
frontend
import
compile_catalog
as
_compile_catalog
from
babel
.
messages
.
frontend
import
extract_messages
as
_extract_messages
from
babel
.
messages
.
frontend
import
update_catalog
as
_update_catalog
from
babel
.
messages
.
frontend
import
init_catalog
as
_init_catalog
using_translations
=
True
except
ImportError
:
using_translations
=
False
try
:
from
sphinx
.
setup_command
import
BuildDoc
using_sphinx
=
True
except
ImportError
:
using_sphinx
=
False
cmdclass
=
dict
(
build_py
=
build_py
,
build
=
build
)
translations_dir
=
os
.
path
.
join
(
package_dir
,
'translations'
)
# localization options
if
using_translations
:
class
compile_catalog
(
_compile_catalog
):
def
initialize_options
(
self
):
"""Simply set default domain and directory attributes to the
correct path for bpython."""
_compile_catalog
.
initialize_options
(
self
)
self
.
domain
=
'bpython'
self
.
directory
=
translations_dir
self
.
use_fuzzy
=
True
class
update_catalog
(
_update_catalog
):
def
initialize_options
(
self
):
"""Simply set default domain and directory attributes to the
correct path for bpython."""
_update_catalog
.
initialize_options
(
self
)
self
.
domain
=
'bpython'
self
.
output_dir
=
translations_dir
self
.
input_file
=
os
.
path
.
join
(
translations_dir
,
'bpython.pot'
)
class
extract_messages
(
_extract_messages
):
def
initialize_options
(
self
):
"""Simply set default domain and output file attributes to the
correct values for bpython."""
_extract_messages
.
initialize_options
(
self
)
self
.
domain
=
'bpython'
self
.
output_file
=
os
.
path
.
join
(
translations_dir
,
'bpython.pot'
)
class
init_catalog
(
_init_catalog
):
def
initialize_options
(
self
):
"""Simply set default domain, input file and output directory
attributes to the correct values for bpython."""
_init_catalog
.
initialize_options
(
self
)
self
.
domain
=
'bpython'
self
.
output_dir
=
translations_dir
self
.
input_file
=
os
.
path
.
join
(
translations_dir
,
'bpython.pot'
)
build
.
sub_commands
.
insert
(
0
, (
'compile_catalog'
,
None
))
cmdclass
[
'compile_catalog'
]
=
compile_catalog
cmdclass
[
'extract_messages'
]
=
extract_messages
cmdclass
[
'update_catalog'
]
=
update_catalog
cmdclass
[
'init_catalog'
]
=
init_catalog
if
using_sphinx
:
class
BuildDocMan
(
BuildDoc
):
def
initialize_options
(
self
):
BuildDoc
.
initialize_options
(
self
)
self
.
builder
=
'man'
self
.
source_dir
=
'doc/sphinx/source'
self
.
build_dir
=
'build'
build
.
sub_commands
.
insert
(
0
, (
'build_sphinx_man'
,
None
))
cmdclass
[
'build_sphinx_man'
]
=
BuildDocMan
if
platform
.
system
()
in
[
'FreeBSD'
,
'OpenBSD'
]:
man_dir
=
'man'
else
:
man_dir
=
'share/man'
# manual pages
man_pages
=
[
(
os
.
path
.
join
(
man_dir
,
'man1'
), [
'build/man/bpython.1'
]),
(
os
.
path
.
join
(
man_dir
,
'man5'
), [
'build/man/bpython-config.5'
]),
]
else
:
man_pages
=
[]
data_files
=
[
# desktop shortcut
(
os
.
path
.
join
(
'share'
,
'applications'
), [
'data/bpython.desktop'
])
]
data_files
.
extend
(
man_pages
)
# translations
mo_files
=
list
()
for
language
in
os
.
listdir
(
translations_dir
):
mo_subpath
=
os
.
path
.
join
(
language
,
'LC_MESSAGES'
,
'bpython.mo'
)
if
os
.
path
.
exists
(
os
.
path
.
join
(
translations_dir
,
mo_subpath
)):
mo_files
.
append
(
mo_subpath
)
setup
(
name
=
"bpython"
,
version
=
__version__
,
author
=
"Bob Farrell, Andreas Stuehrk et al."
,
author_email
=
"robertanthonyfarrell@gmail.com"
,
description
=
"Fancy Interface to the Python Interpreter"
,
license
=
"MIT/X"
,
url
=
"http://www.bpython-interpreter.org/"
,
long_description
=
"""bpython is a fancy interface to the Python
interpreter for Unix-like operating systems."""
,
install_requires
=
[
'pygments'
],
tests_require
=
[
'mock'
],
packages
=
[
"bpython"
,
"bpython.test"
,
"bpython.translations"
,
"bpdb"
],
data_files
=
data_files
,
package_data
=
{
'bpython'
: [
'logo.png'
],
'bpython.translations'
:
mo_files
,
'bpython.test'
: [
'test.config'
,
'test.theme'
]
},
entry_points
=
{
'console_scripts'
: [
'bpython = bpython.cli:main'
,
'bpython-urwid = bpython.urwid:main'
,
],
'gui_scripts'
: [
'bpython-gtk = bpython.gtk_:main'
]
},
scripts
=
([]
if
using_setuptools
else
[
'data/bpython'
,
'data/bpython-gtk'
,
'data/bpython-urwid'
]),
cmdclass
=
cmdclass
,
test_suite
=
'bpython.test'
)
# vim: fileencoding=utf-8 sw=4 ts=4 sts=4 ai et sta
Back
|
FazBrowse Home
|
New Git URL