1 | import os
|
---|
2 | import setuptools
|
---|
3 | from distutils.core import setup
|
---|
4 |
|
---|
5 | version = '0.1'
|
---|
6 |
|
---|
7 | requires = [
|
---|
8 | 'nose',
|
---|
9 | 'coverage'
|
---|
10 | ]
|
---|
11 |
|
---|
12 | setup(
|
---|
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='BSD licence, 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 | )
|
---|