Rev | Line | |
---|
[1] | 1 | import os
|
---|
| 2 | import setuptools
|
---|
| 3 | from distutils.core import setup
|
---|
[0] | 4 |
|
---|
[1] | 5 | version = '0.1'
|
---|
[0] | 6 |
|
---|
[1] | 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
TracBrowser
for help on using the repository browser.