|
1 | 1 | from setuptools import find_packages, setup |
2 | | - |
| 2 | +from pathlib import Path |
3 | 3 | from cli import __version__ |
4 | 4 |
|
| 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 | + |
5 | 11 | setup( |
6 | 12 | name='cycode', |
7 | 13 | version=__version__, |
8 | 14 | packages=find_packages(), |
9 | | - url='https://github.com/cycodehq/cycode_cli', |
| 15 | + url='https://github.com/cycodehq-public/cycode-cli', |
10 | 16 | license='MIT', |
11 | 17 | author='Cycode', |
12 | 18 | data_files=[('cyclient', ['cyclient/config.yaml']), ('cli', ['cli/config.yaml'])], |
|
15 | 21 | 'cycode=cli.cycode:main_cli', |
16 | 22 | ]}, |
17 | 23 | 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", |
20 | 28 | install_requires=["click", |
21 | 29 | "requests", |
22 | 30 | "pyyaml", |
|
33 | 41 | classifiers=[ |
34 | 42 | "Environment :: Console", |
35 | 43 | "Programming Language :: Python", |
36 | | - "Programming Language :: Python :: 3", |
37 | 44 | "Programming Language :: Python :: 3.7", |
38 | 45 | "Programming Language :: Python :: 3.8", |
39 | 46 | "Programming Language :: Python :: 3.9", |
|
0 commit comments