source: pyenvjasmine/setup.py@ 0:0175515fceea

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

Imported sources from http://repos.betabug.ch/pyenvjasmine

File size: 690 bytes
Line 
1from setuptools import setup, find_packages
2import sys, os
3
4version = '0.0'
5
6setup(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 )
Note: See TracBrowser for help on using the repository browser.