-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 724 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 724 Bytes
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
from setuptools import setup, find_packages
from pathlib import Path
#project_dir = Path(__file__).parent
#long_description = (project_dir / "README.md").read_text()
def read_file(rel_path: str):
return Path(__file__).parent.joinpath(rel_path).read_text()
setup(
name="gh-scout",
url="https://github.com/TechWiz-3/scout",
author="Zac the Wise aka TechWiz-3",
version='0.3.3',
description="⭐ Find hacktoberfest repos to contribute to from your CLI",
long_description_content_type='text/markdown',
long_description=read_file("README.md"),
packages=find_packages(),
entry_points='''
[console_scripts]
scout=scout.main:cli
''',
instal_requires=["rich"],
)