source: pyenvjasmine/setup.py@ 1:c9f63fa84855

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

Cleaned up setup.py, set version 0.1

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