-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (25 loc) · 931 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as handle:
LONG_DESCRIPTION = handle.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='testblame',
version="0.1",
description="Collect the failed tests from junit report and send across report based on their"
" commit history.",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author="Omkar Khatavkar",
author_email="[email protected]",
url="https://github.com/omkarkhatavkar/testblame",
py_modules=['testblame'],
install_requires=required,
packages=find_packages("testblame"),
entry_points={"console_scripts": ["testblame=testblame:cli"]},
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)