aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..f810b30
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,34 @@
+import os
+
+from setuptools import setup
+
+
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
+
+setup(
+ name='tabsvsspaces',
+ version='1.1.1',
+ author="Roman Gräf",
+ author_email="romangraef@gmail.com",
+ description="A tool for counting spaces vs tabs in a codebase",
+ license="MIT",
+ keywords="tabs spaces linecount counting commandline",
+ packages=['tabsvsspaces'],
+ long_description=read('README.md'),
+ long_description_content_type="text/markdown",
+ url="https://github.com/romangraef/tabsvsspaces",
+ classifiers=[
+ 'Development Status :: 5 - Production/Stable',
+ 'Environment :: Console',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: Religion',
+ 'License :: OSI Approved :: MIT License',
+ 'Programming Language :: Python :: 3.5',
+ 'Typing :: Typed',
+ ],
+ entry_points=dict(
+ console_scripts='tabsvsspaces=tabsvsspaces:main'
+ )
+)