Skip to content

Commit b709348

Browse files
committed
Convert tabs to spaces
1 parent fa02c05 commit b709348

File tree

4 files changed

+443
-437
lines changed

4 files changed

+443
-437
lines changed

.editorconfig

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[*.py]
2+
charset=utf-8
3+
end_of_line=lf
4+
insert_final_newline=true
5+
indent_style=space
6+
indent_size=4

setup.py

+29-29
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,37 @@
22
from setuptools import setup
33

44
if sys.version_info < (2, 7):
5-
sys.stdout.write("At least Python 2.7 is required.\n")
6-
sys.exit(1)
5+
sys.stdout.write("At least Python 2.7 is required.\n")
6+
sys.exit(1)
77

88
with open('README.rst') as f:
9-
long_description = f.read()
9+
long_description = f.read()
1010

1111
setup(
12-
name='xopen',
13-
version='0.3.5', # update also the version in xopen.py!
14-
author='Marcel Martin',
15-
author_email='[email protected]',
16-
url='https://github.com/marcelm/xopen/',
17-
description='Open compressed files transparently',
18-
long_description=long_description,
19-
license='MIT',
20-
py_modules=['xopen'],
21-
install_requires=[
22-
'bz2file; python_version=="2.7"',
23-
],
24-
extras_require={
25-
'dev': ['pytest'],
26-
},
27-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
28-
classifiers=[
29-
"Development Status :: 4 - Beta",
30-
"License :: OSI Approved :: MIT License",
31-
"Programming Language :: Python :: 2.7",
32-
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.4",
34-
"Programming Language :: Python :: 3.5",
35-
"Programming Language :: Python :: 3.6",
36-
"Programming Language :: Python :: 3.7",
37-
]
12+
name='xopen',
13+
version='0.3.5', # update also the version in xopen.py!
14+
author='Marcel Martin',
15+
author_email='[email protected]',
16+
url='https://github.com/marcelm/xopen/',
17+
description='Open compressed files transparently',
18+
long_description=long_description,
19+
license='MIT',
20+
py_modules=['xopen'],
21+
install_requires=[
22+
'bz2file; python_version=="2.7"',
23+
],
24+
extras_require={
25+
'dev': ['pytest'],
26+
},
27+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
28+
classifiers=[
29+
"Development Status :: 4 - Beta",
30+
"License :: OSI Approved :: MIT License",
31+
"Programming Language :: Python :: 2.7",
32+
"Programming Language :: Python :: 3",
33+
"Programming Language :: Python :: 3.4",
34+
"Programming Language :: Python :: 3.5",
35+
"Programming Language :: Python :: 3.6",
36+
"Programming Language :: Python :: 3.7",
37+
]
3838
)

0 commit comments

Comments
 (0)