Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
from setuptools import find_packages, setup

from pathlib import Path
from cli import __version__


def get_long_description():
this_directory = Path(__file__).parent
return (this_directory / "README.md").read_text(encoding='utf-8')


setup(
name='cycode',
version=__version__,
packages=find_packages(),
url='https://github.com/cycodehq/cycode_cli',
url='https://github.com/cycodehq-public/cycode-cli',
license='MIT',
author='Cycode',
data_files=[('cyclient', ['cyclient/config.yaml']), ('cli', ['cli/config.yaml'])],
Expand All @@ -15,8 +21,10 @@
'cycode=cli.cycode:main_cli',
]},
include_package_data=True,
author_email='maor@cycode.com',
description='',
author_email='support@cycode.com',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:(

description="Perform secrets/iac scans for your sources using Cycode's engine",
long_description=get_long_description(),
long_description_content_type="text/markdown",
install_requires=["click",
"requests",
"pyyaml",
Expand All @@ -33,7 +41,6 @@
classifiers=[
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down