source: pyenvjasmine/setup.py@ 16:d2cfc3c0bc79

Last change on this file since 16:d2cfc3c0bc79 was 16:d2cfc3c0bc79, checked in by Borja Lopez <borja@…>, 9 years ago

Bumped to 0.1.1, fixed the wrong long_description entry in setup.py
that was breaking installations from pypi

File size: 1.0 KB
RevLine 
[1]1import os
2import setuptools
3from distutils.core import setup
[0]4
[16]5version = '0.1.1'
[0]6
[7]7requires = [
8 'nose',
9 'coverage'
10]
11
[1]12setup(
13 name='pyenvjasmine',
14 version=version,
15 description="A Python wrapper for envjasmine",
[16]16 long_description=open('README.rst').read(),
[1]17 author='Sascha Welter',
18 author_email='',
19 url='https://bitbucket.org/codigo23/pyenvjasmine',
20 download_url='http://pypi.python.org/pypi/pyenvjasmine#downloads',
[14]21 license='BSD licence, see LICENSE',
[7]22 install_requires=requires,
[1]23 classifiers=[
24 'Development Status :: 5 - Production/Stable',
25 'Environment :: Console',
26 'Intended Audience :: Developers',
27 'License :: OSI Approved :: Zope Public License',
28 'Natural Language :: English',
29 'Operating System :: OS Independent',
30 'Programming Language :: Python :: 2',
31 'Programming Language :: Python :: 3',
32 'Programming Language :: JavaScript',
33 'Topic :: Software Development',
34 'Topic :: Software Development :: Testing',
35 ]
36)
Note: See TracBrowser for help on using the repository browser.