-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
182 lines (163 loc) · 5.66 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
# -*- encoding: utf-8 -*-
# Copyright (c) 2015-2016, Nicolas Desprès
# Relevant documentation used when writing this file:
# https://docs.python.org/3/library/distutils.html
# http://www.diveinto.org/python3/packaging.html
# http://www.scotttorborg.com/python-packaging/
# and of course several example projects such as: csvkit, nose or buildout.
from setuptools import setup
from setuptools.command.sdist import sdist
from wheel.bdist_wheel import bdist_wheel
import os
import sys
import subprocess
import errno
import codecs
from contextlib import contextmanager
ROOT_DIR = os.path.dirname(__file__)
VERSION_TXT = os.path.join(ROOT_DIR, "VERSION.txt")
REVISION_TXT = os.path.join(ROOT_DIR, "REVISION.txt")
README_RST = os.path.join(ROOT_DIR, "README.rst")
VERSION_SCRIPT = os.path.join("script", "version")
def readfile(filepath):
with codecs.open(filepath,
mode="r",
encoding="utf-8") as stream:
return stream.read()
def writefile(filepath, content):
with codecs.open(filepath, mode="w", encoding="utf-8") as stream:
stream.write(content)
def get_version():
try:
return readfile(VERSION_TXT).strip()
except IOError as e:
if e.errno == errno.ENOENT:
cmd = [VERSION_SCRIPT, "get", "--no-dirty"]
return subprocess.check_output(cmd).decode().strip()
def get_revision():
try:
return readfile(REVISION_TXT).strip()
except IOError as e:
if e.errno == errno.ENOENT:
cmd = [VERSION_SCRIPT, "revision"]
return subprocess.check_output(cmd).decode().strip()
def is_git_dir(dirpath=None):
if dirpath is None:
dirpath = os.getcwd()
cmd = ["git", "-C", str(dirpath), "rev-parse", "--git-dir"]
try:
with open(os.devnull, "wb") as devnull:
subprocess.check_call(cmd, stdout=devnull, stderr=devnull)
except subprocess.CalledProcessError:
return False
return True
def git_file_is_modified(filepath):
cmd = ["git", "status", "--porcelain", str(filepath)]
output = subprocess.check_output(cmd).decode()
return output != u''
def sed_i(script, *filepaths):
cmd = [ "sed", "-i", '', "-e", script ] + list(filepaths)
subprocess.check_call(cmd)
def rm_f(path, verbose=False):
if verbose:
print("remove %s"%(path,))
try:
os.unlink(path)
except OSError as e:
if e.errno != errno.ENOENT:
raise e
@contextmanager
def inject_version_info():
pyloc_py = "pyloc.py"
if not is_git_dir():
yield
return
if git_file_is_modified(pyloc_py):
raise RuntimeError("'%s' has un-commited changes"%(pyloc_py,))
try:
print("inject version number into module")
VERSION = get_version()
sed_i(
"s/^__version__ = 'dev'$/__version__ = '%s'/"%(VERSION,),
pyloc_py)
writefile(VERSION_TXT, VERSION)
print("inject revision number into module")
REVISION = get_revision()
writefile(REVISION_TXT, REVISION)
sed_i(
"s/^__revision__ = 'git'$/__revision__ = '%s'/"%(REVISION,),
pyloc_py)
yield
finally:
print("restore %s"%(pyloc_py,))
subprocess.check_call(["git", "checkout", pyloc_py])
rm_f(VERSION_TXT, verbose=True)
rm_f(REVISION_TXT, verbose=True)
class SDistProxy(sdist):
"""Hook sdist command"""
def run(self):
with inject_version_info():
# Super class is an old-style class, so we use old-style
# "super" call.
sdist.run(self)
class BDistWheelProxy(bdist_wheel):
def run(self):
with inject_version_info():
# Super class is an old-style class, so we use old-style
# "super" call.
bdist_wheel.run(self)
PY_VERSION_SUFFIX = '%s' % (sys.version_info.major,)
setup(
name="pyloc",
version=get_version(),
# We only have a single module to distribute
packages=[],
py_modules=[
"pyloc",
"test_pyloc",
],
# We only depends on Python standard library.
install_requires=[],
# Generate a command line interface driver.
entry_points={
'console_scripts': [
"pyloc=pyloc:_main",
"pyloc%s=pyloc:_main" % (PY_VERSION_SUFFIX,),
],
},
# How to run the test suite.
test_suite='nose.collector',
tests_require=['nose'],
# What it does, who wrote it and where to find it.
description="Locate python object definition in your file-system",
long_description=readfile(README_RST),
author="Nicolas Despres",
author_email='[email protected]',
license="Simplified BSD",
keywords='utility',
url='https://github.com/nicolasdespres/pyloc',
platforms=["any"],
# Pick some from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
cmdclass={
'sdist': SDistProxy,
'bdist_wheel': BDistWheelProxy,
},
)