Skip to content

Commit ac2cb70

Browse files
authored
CM-13345 - update setup.py (#17)
* added more details to setup.py * add encoding
1 parent 4a4410a commit ac2cb70

1 file changed

Lines changed: 12 additions & 5 deletions

File tree

setup.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
from setuptools import find_packages, setup
2-
2+
from pathlib import Path
33
from cli import __version__
44

5+
6+
def get_long_description():
7+
this_directory = Path(__file__).parent
8+
return (this_directory / "README.md").read_text(encoding='utf-8')
9+
10+
511
setup(
612
name='cycode',
713
version=__version__,
814
packages=find_packages(),
9-
url='https://github.com/cycodehq/cycode_cli',
15+
url='https://github.com/cycodehq-public/cycode-cli',
1016
license='MIT',
1117
author='Cycode',
1218
data_files=[('cyclient', ['cyclient/config.yaml']), ('cli', ['cli/config.yaml'])],
@@ -15,8 +21,10 @@
1521
'cycode=cli.cycode:main_cli',
1622
]},
1723
include_package_data=True,
18-
author_email='maor@cycode.com',
19-
description='',
24+
author_email='support@cycode.com',
25+
description="Perform secrets/iac scans for your sources using Cycode's engine",
26+
long_description=get_long_description(),
27+
long_description_content_type="text/markdown",
2028
install_requires=["click",
2129
"requests",
2230
"pyyaml",
@@ -33,7 +41,6 @@
3341
classifiers=[
3442
"Environment :: Console",
3543
"Programming Language :: Python",
36-
"Programming Language :: Python :: 3",
3744
"Programming Language :: Python :: 3.7",
3845
"Programming Language :: Python :: 3.8",
3946
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)