-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1 KB
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
from setuptools import setup, find_packages
import pathlib
import styling
import constants
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='redcoffee',
version='2.16',
author="Anubhav Sanyal",
description='A command-line tool to generate PDF for SonarQube Reports',
long_description=README,
long_description_content_type='text/markdown',
# Change this if your README is not markdown
packages=find_packages(), # Automatically find packages
py_modules=['redcoffee', 'styling', 'constants','support','ascii_art','diagnose'],
install_requires=[
'click',
'reportlab',
'pytest',
'requests',
'setuptools',
'ipinfo',
'sentry_sdk',
'python-dotenv',
'pyfiglet',
'colorama'
],
entry_points='''
[console_scripts]
redcoffee=redcoffee:cli
''',
include_package_data=True,
)