##// END OF EJS Templates
Simplifying setup.py (ez_setup is no longer current)
Marcin Kasperski -
r281:6a44fcd7 default
parent child Browse files
Show More
@@ -1,44 +1,37 b''
1 """Setup for mercurial_keyring."""
2
3 from setuptools import setup
1
4
2 VERSION = '1.3.0'
5 VERSION = '1.3.0'
3
4 # pylint: disable=unused-import
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()
6 LONG_DESCRIPTION = open("README.txt").read()
14
7
15 setup(
8 setup(
16 name="mercurial_keyring",
9 name="mercurial_keyring",
17 version=VERSION,
10 version=VERSION,
18 author='Marcin Kasperski',
11 author='Marcin Kasperski',
19 author_email='Marcin.Kasperski@mekk.waw.pl',
12 author_email='Marcin.Kasperski@mekk.waw.pl',
20 url='http://bitbucket.org/Mekk/mercurial_keyring',
13 url='http://bitbucket.org/Mekk/mercurial_keyring',
21 description='Mercurial Keyring Extension',
14 description='Mercurial Keyring Extension',
22 long_description=LONG_DESCRIPTION,
15 long_description=LONG_DESCRIPTION,
23 license='BSD',
16 license='BSD',
24 py_modules=['mercurial_keyring'],
17 py_modules=['mercurial_keyring'],
25 keywords="mercurial hg keyring password",
18 keywords="mercurial hg keyring password",
26 classifiers=[
19 classifiers=[
27 'Development Status :: 4 - Beta',
20 'Development Status :: 4 - Beta',
28 'Environment :: Console',
21 'Environment :: Console',
29 'Intended Audience :: Developers',
22 'Intended Audience :: Developers',
30 'License :: DFSG approved',
23 'License :: DFSG approved',
31 'License :: OSI Approved :: BSD License',
24 'License :: OSI Approved :: BSD License',
32 'Programming Language :: Python :: 2',
25 'Programming Language :: Python :: 2',
33 'Programming Language :: Python :: 3',
26 'Programming Language :: Python :: 3',
34 'Operating System :: OS Independent',
27 'Operating System :: OS Independent',
35 'Topic :: Software Development :: Libraries',
28 'Topic :: Software Development :: Libraries',
36 'Topic :: Software Development :: Libraries :: Python Modules',
29 'Topic :: Software Development :: Libraries :: Python Modules',
37 'Topic :: Software Development :: Version Control'
30 'Topic :: Software Development :: Version Control'
38 ],
31 ],
39 install_requires=[
32 install_requires=[
40 'keyring>=0.3',
33 'keyring>=0.3',
41 'mercurial_extension_utils>=1.5.0',
34 'mercurial_extension_utils>=1.5.0',
42 ],
35 ],
43 zip_safe=True,
36 zip_safe=True,
44 )
37 )
General Comments 0
You need to be logged in to leave comments. Login now