Show More
@@ -1,35 +1,35 b'' | |||
|
1 | ||
|
1 | version = '0.3.2' | |
|
2 | 2 | |
|
3 | 3 | try: |
|
4 | 4 | from setuptools import setup, find_packages |
|
5 | 5 | except ImportError: |
|
6 | 6 | from ez_setup import use_setuptools |
|
7 | 7 | use_setuptools() |
|
8 | 8 | from setuptools import setup, find_packages |
|
9 | 9 | |
|
10 | 10 | long_description = open("README.txt").read() |
|
11 | 11 | |
|
12 | 12 | setup( |
|
13 | 13 | name = "mercurial_keyring", |
|
14 |
version = |
|
|
14 | version = version, | |
|
15 | 15 | author = 'Marcin Kasperski', |
|
16 | 16 | author_email = 'Marcin.Kasperski@mekk.waw.pl', |
|
17 | url = 'http://mekk.waw.pl', | |
|
17 | url = 'http://bitbucket.org/Mekk/mercurial_keyring', | |
|
18 | 18 | description = 'Mercurial Keyring Extension', |
|
19 | 19 | long_description = long_description, |
|
20 | 20 | license = 'GPL', |
|
21 | 21 | py_modules = ['mercurial_keyring'], |
|
22 | 22 | keywords = "mercurial hg keyring password", |
|
23 | 23 | classifiers = [ |
|
24 | 24 | 'Development Status :: 4 - Beta', |
|
25 | 25 | 'Environment :: Console', |
|
26 | 26 | 'Intended Audience :: Developers', |
|
27 | 27 | 'License :: OSI Approved :: BSD License', |
|
28 | 28 | 'Operating System :: OS Independent', |
|
29 | 29 | 'Topic :: Software Development :: Libraries', |
|
30 | 30 | 'Topic :: Software Development :: Libraries :: Python Modules', |
|
31 | 31 | 'Topic :: Software Development :: Version Control' |
|
32 | 32 | ], |
|
33 | 33 | install_requires = ['keyring'], |
|
34 | 34 | zip_safe = True, |
|
35 | 35 | ) |
General Comments 0
You need to be logged in to leave comments.
Login now