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