-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.06 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
import os
from setuptools import setup
from fastcli import __version__, __name__
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name=__name__,
version=__version__,
description='A Wallarm FAST CLI tool for executing tests and getting results from the command line.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/faloker/wallarm-fast-cli',
license='MIT',
packages=[
'fastcli',
],
install_requires=[
'click==7.0',
'requests==2.23.0',
],
entry_points={
'console_scripts': [
'fast-cli=fastcli.cli:cli',
],
},
classifiers=[
'Topic :: Security',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
],
)