-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsetup.py
45 lines (43 loc) · 1.83 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
41
42
43
44
45
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from mamba import __version__
setup(name='mamba',
version=__version__,
description="The definitive testing tool for Python. Born under the banner of Behavior Driven Development.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
keywords='',
author=u'Néstor Salceda',
author_email='nestor.salceda@gmail.com',
url='http://nestorsalceda.github.io/mamba',
license='MIT/X11',
packages=find_packages(exclude=['ez_setup', 'examples', 'spec', 'spec.*']),
include_package_data=True,
zip_safe=False,
install_requires=['clint', 'coverage'],
test_require=['expect', 'doublex', 'doublex-expects'],
entry_points={
'console_scripts': [
'mamba = mamba.cli:main'
]
})