forked from deshaw/pyflyby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·238 lines (200 loc) · 7.63 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/env python
# pyflyby/setup.py.
# License for THIS FILE ONLY: CC0 Public Domain Dedication
# http://creativecommons.org/publicdomain/zero/1.0/
import glob
import os
import re
from setuptools import Command, setup
from setuptools.command.test import test as TestCommand
from setuptools.command.sdist import sdist as SdistCommand
import subprocess
import sys
from textwrap import dedent
PYFLYBY_HOME = os.path.abspath(os.path.dirname(__file__))
PYFLYBY_PYPATH = os.path.join(PYFLYBY_HOME, "lib/python")
PYFLYBY_DOT_PYFLYBY = os.path.join(PYFLYBY_HOME, ".pyflyby")
# Get the pyflyby version from pyflyby.__version__.
# We use exec instead to avoid importing pyflyby here.
version_vars = {}
version_fn = os.path.join(PYFLYBY_PYPATH, "pyflyby/_version.py")
exec(open(version_fn).read(), {}, version_vars)
version = version_vars["__version__"]
def read(fname):
with open(os.path.join(PYFLYBY_HOME, fname)) as f:
return f.read()
def list_python_source_files():
results = []
for fn in glob.glob("bin/*"):
if not os.path.isfile(fn):
continue
with open(fn) as f:
line = f.readline()
if not re.match("^#!.*python", line):
continue
results.append(fn)
results += glob.glob("lib/python/pyflyby/*.py")
results += glob.glob("tests/*.py")
return results
class TidyImports(Command):
description = "tidy imports in pyflyby source files (for maintainer use)"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
files = list_python_source_files()
pyflyby_path = ":".join([
os.path.join(PYFLYBY_HOME, "etc/pyflyby"),
PYFLYBY_DOT_PYFLYBY,
])
subprocess.call([
"env",
"PYFLYBY_PATH=%s" % (pyflyby_path,),
"tidy-imports",
# "--debug",
"--uniform",
] + files)
class CollectImports(Command):
description = "update pyflyby's own .pyflyby file from imports (for maintainer use)"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
files = list_python_source_files()
print("Rewriting", PYFLYBY_DOT_PYFLYBY)
with open(PYFLYBY_DOT_PYFLYBY, 'w') as f:
print(dedent("""
# -*- python -*-
#
# This is the imports database file for pyflyby itself.
#
# To regenerate this file, run: setup.py collect_imports
__mandatory_imports__ = [
'from __future__ import print_function',
]
""").lstrip(), file=f)
f.flush()
subprocess.call(
[
os.path.join(PYFLYBY_HOME, "bin/collect-imports"),
"--include=pyflyby",
"--uniform",
] + files,
stdout=f)
subprocess.call(["git", "diff", PYFLYBY_DOT_PYFLYBY])
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ['--doctest-modules', 'lib', 'tests']
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
# We want to test the version of pyflyby in this repository. It's
# possible that some different version of pyflyby already got imported
# in usercustomize, before we could set sys.path here. If so, unload
# it.
if 'pyflyby' in sys.modules:
print("setup.py: Unloading %s from sys.modules "
"(perhaps it got loaded in usercustomize?)"
% (sys.modules['pyflyby'].__file__,))
del sys.modules['pyflyby']
for k in sys.modules.keys():
if k.startswith("pyflyby."):
del sys.modules[k]
# Add our version of pyflyby to sys.path & PYTHONPATH.
sys.path.insert(0, PYFLYBY_PYPATH)
os.environ["PYTHONPATH"] = PYFLYBY_PYPATH
# Run pytest.
errno = pytest.main(self.pytest_args)
sys.exit(errno)
DISALLOWED_CONTENT = ['g'+'uas', 'g'+'ql']
def check_for_disallowed_content(archive_filename):
archive_filename = os.path.abspath(archive_filename)
assert archive_filename.endswith(".tar.gz")
archive_members = subprocess.check_output(['tar', 'tzf', archive_filename])
archive_file_content = subprocess.check_output(['tar', 'xzOf', archive_filename])
data = archive_members + archive_file_content.lower()
for disallowed in DISALLOWED_CONTENT:
if disallowed.encode("ascii") in data:
raise ValueError("Found match for content that shouldn't be source-disted: %s"
% (disallowed,))
class SdistAndCheck(SdistCommand, object):
def make_distribution(self):
super(SdistAndCheck, self).make_distribution()
for filename in self.archive_files:
check_for_disallowed_content(filename)
setup(
name = "pyflyby",
version = version,
author = "Karl Chen",
author_email = "[email protected]",
description = ("pyflyby - Python development productivity tools, in particular automatic import management"),
license = "MIT",
keywords = "pyflyby py autopython autoipython productivity automatic imports autoimporter tidy-imports",
url = "https://pypi.org/project/pyflyby/",
project_urls={
'Documentation': 'https://deshaw.github.io/pyflyby/',
'Source' : 'https://github.com/deshaw/pyflyby',
},
package_dir={'': 'lib/python'},
packages=['pyflyby'],
entry_points={'console_scripts':
'\n'.join([
'py=pyflyby._py:py_main',
'py3=pyflyby._py:py_main',
])},
scripts=[
# TODO: convert these scripts into entry points (but leave stubs in
# bin/ for non-installed usage)
'bin/collect-exports',
'bin/collect-imports',
'bin/find-import',
'bin/list-bad-xrefs',
'bin/prune-broken-imports',
'bin/pyflyby-diff',
'bin/reformat-imports',
'bin/replace-star-imports',
'bin/tidy-imports',
'bin/transform-imports',
],
data_files=[
('libexec/pyflyby', [
'libexec/pyflyby/colordiff', 'libexec/pyflyby/diff-colorize',
]),
('etc/pyflyby', glob.glob('etc/pyflyby/*.py')),
('share/doc/pyflyby', glob.glob('doc/*.txt')),
('share/emacs/site-lisp', ['lib/emacs/pyflyby.el']),
],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Interpreters",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
install_requires=[
"six",
"toml",
"black",
"typing_extensions>=4.6; python_version<'3.12'"
],
python_requires=">3.8, <4",
tests_require=['pexpect>=3.3', 'pytest', 'epydoc', 'rlipython', 'requests'],
cmdclass = {
'test' : PyTest,
'sdist' : SdistAndCheck,
'collect_imports': CollectImports,
'tidy_imports' : TidyImports,
},
)