Mercurial > hg-allpaths
comparison setup.py @ 4:7591d4101b93
Added preliminary setup.py
author | Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl> |
---|---|
date | Sun, 08 Nov 2015 07:55:40 +0100 |
parents | |
children | 8cca585b11cc |
comparison
equal
deleted
inserted
replaced
3:be90faafa754 | 4:7591d4101b93 |
---|---|
1 | |
2 VERSION = '0.3.0' | |
3 | |
4 #pylint:disable=missing-docstring,unused-import,import-error | |
5 | |
6 try: | |
7 from setuptools import setup, find_packages | |
8 except ImportError: | |
9 from ez_setup import use_setuptools | |
10 use_setuptools() | |
11 from setuptools import setup, find_packages | |
12 | |
13 LONG_DESCRIPTION = open("README.txt").read() | |
14 | |
15 setup( | |
16 name="mercurial_all_paths", | |
17 version=VERSION, | |
18 author='Ludovic Chabant', | |
19 # url='http://bitbucket.org/Mekk/mercurial-all_paths', | |
20 url='http://bitbucket.org/ludovicchabant/allpaths', | |
21 description='Mercurial allpaths extension', | |
22 long_description=LONG_DESCRIPTION, | |
23 license='BSD', | |
24 py_modules=['allpaths'], | |
25 keywords="mercurial paths multi extension", | |
26 classifiers=[ | |
27 'Development Status :: 4 - Beta', | |
28 'Environment :: Console', | |
29 'Intended Audience :: Developers', | |
30 'License :: DFSG approved', | |
31 'License :: OSI Approved :: GNU', | |
32 'Operating System :: OS Independent', | |
33 'Topic :: Software Development :: Version Control' | |
34 #'Topic :: Software Development :: Version Control :: Mercurial', | |
35 ], | |
36 zip_safe=True) |