forked from jmvrbanac/Specter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (42 loc) · 1.24 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
import os
from setuptools import setup, find_packages
long_desc = None
if os.path.exists('README.rst'):
long_desc = open('README.rst').read()
version = '1.1.0'
setup(
name='Spektrum',
version=version,
packages=find_packages(exclude=('tests')),
url='https://github.com/liquidweb/spektrum',
license='MIT License',
author='LiquidWeb Quality Engineering',
description='Spektrum is a spec-based testing library to help facilitate BDD-testing in Python.',
long_description=long_desc,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
],
python_requires='>=3.5',
tests_require=['pytest', 'flake8'],
install_requires=[
'colored',
'docopt',
'pike>=0.1.0',
'coverage',
'httpx>=0.23.0',
'python-dateutil>=2.8.2',
'pyyaml',
],
entry_points = {
'console_scripts': [
'spektrum = spektrum.__main__:main'
]
},
)