changeset 4:7591d4101b93

Added preliminary setup.py
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Sun, 08 Nov 2015 07:55:40 +0100
parents be90faafa754
children 0c3ddf5c1a3f
files .hgignore README.txt setup.py
diffstat 3 files changed, 42 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Sun Nov 08 07:49:01 2015 +0100
+++ b/.hgignore	Sun Nov 08 07:55:40 2015 +0100
@@ -1,5 +1,10 @@
 syntax: glob
 *~
 *.pyc
+*.pyo
 *.orig
 *.err
+build
+dist
+.egg-info
+README.html
--- a/README.txt	Sun Nov 08 07:49:01 2015 +0100
+++ b/README.txt	Sun Nov 08 07:55:40 2015 +0100
@@ -1,3 +1,4 @@
+.. -*- mode: rst; compile-command: "rst2html README.txt README.html" -*-
 
 allpaths extension
 ==================
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Sun Nov 08 07:55:40 2015 +0100
@@ -0,0 +1,36 @@
+
+VERSION = '0.3.0'
+
+#pylint:disable=missing-docstring,unused-import,import-error
+
+try:
+    from setuptools import setup, find_packages
+except ImportError:
+    from ez_setup import use_setuptools
+    use_setuptools()
+    from setuptools import setup, find_packages
+
+LONG_DESCRIPTION = open("README.txt").read()
+
+setup(
+    name="mercurial_all_paths",
+    version=VERSION,
+    author='Ludovic Chabant',
+    # url='http://bitbucket.org/Mekk/mercurial-all_paths',
+    url='http://bitbucket.org/ludovicchabant/allpaths',
+    description='Mercurial allpaths extension',
+    long_description=LONG_DESCRIPTION,
+    license='BSD',
+    py_modules=['allpaths'],
+    keywords="mercurial paths multi extension",
+    classifiers=[
+        'Development Status :: 4 - Beta',
+        'Environment :: Console',
+        'Intended Audience :: Developers',
+        'License :: DFSG approved',
+        'License :: OSI Approved :: GNU',
+        'Operating System :: OS Independent',
+        'Topic :: Software Development :: Version Control'
+        #'Topic :: Software Development :: Version Control :: Mercurial',
+    ],
+    zip_safe=True)