Changeset 1:c9f63fa84855 in pyenvjasmine
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r0 r1 1 from setuptools import setup, find_packages 2 import sys, os 1 import os 2 import setuptools 3 from distutils.core import setup 3 4 4 version = '0. 0'5 version = '0.1' 5 6 6 setup(name='pyenvjasmine', 7 version=version, 8 description="A Python wrapper for envjasmine", 9 long_description="""\ 10 """, 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 12 keywords='', 13 author='Sascha Welter', 14 author_email='', 15 url='', 16 license='ZPL', 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 18 include_package_data=True, 19 zip_safe=False, 20 install_requires=[ 21 # -*- Extra requirements: -*- 22 ], 23 entry_points=""" 24 # -*- Entry points: -*- 25 """, 26 ) 7 setup( 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 TracChangeset
for help on using the changeset viewer.