source: pyenvjasmine/setup.py@ 13:0388ce537f16

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

Added short description file. Use that file contents in the description in setup.py

File size: 1.0 KB
Line 
1import os
2import setuptools
3from distutils.core import setup
4
5version = '0.1'
6
7requires = [
8 'nose',
9 'coverage'
10]
11
12setup(
13 name='pyenvjasmine',
14 version=version,
15 description="A Python wrapper for envjasmine",
16 long_description=open('DESCRIPTION.rst').read(),
17 author='Sascha Welter',
18 author_email='',
19 url='https://bitbucket.org/codigo23/pyenvjasmine',
20 download_url='http://pypi.python.org/pypi/pyenvjasmine#downloads',
21 license='Zope Public License, see LICENSE',
22 install_requires=requires,
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.