-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
41 lines (38 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
import os
version = '0.4.5'
here = os.path.abspath(os.path.dirname(__file__))
long_description = open(os.path.join(here, 'README.rst')).read()
setup(name='specloud',
version=version,
description="install nosetests and plugins to ease bdd unit specs",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
keywords='test bdd nosetests spec unit',
author='Hugo Lopes Tavares',
author_email='hltbra@gmail.com',
url='http://github.com/hugobr/specloud',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'nose',
'figleaf',
'pinocchio==0.3',
],
entry_points="""
[console_scripts]
specloud = specloud:main
""",
)