summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..6616010
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,23 @@
+import os
+
+from setuptools import setup
+
+
+setup(
+ name="git-phab",
+ version="1.0",
+ author="Xavier Claessens",
+ author_email="xavier.claessens@collabora.com",
+ description=("Git subcommand to integrate with phabricator"),
+ license="GPL",
+ keywords="phabricator tool git",
+ url="http://packages.python.org/git-phab",
+ long_description_markdown_filename='README.md',
+ setup_requires=['setuptools-markdown'],
+ classifiers=[
+ "Topic :: Utilities",
+ "License :: OSI Approved :: GNU General Public License (GPL)"
+ ],
+ install_requires=['GitPython', 'appdirs', 'argcomplete'],
+ scripts=['git-phab'],
+)