-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (52 loc) · 1.72 KB
/
setup.py
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
# READMEファイルの内容を読み込む
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# requirements.txtファイルの内容を読み込む
# with open('requirements.txt') as f:
# required = f.read().splitlines()
setup(
# パッケージの名前
name='sourcesage',
# パッケージのバージョン
version='5.6.1',
# パッケージに含めるモジュールを自動的に探す
packages=find_packages(),
# パッケージの分類情報
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Utilities",
],
# パッケージに含めるデータファイル
package_data={
'sourcesage': ['config/**/**',
'config/.SourceSageignore'],
},
# コマンドラインからの実行用エントリーポイント
entry_points={
'console_scripts': [
'sourcesage=sourcesage.cli:main',
],
},
# PyPIに表示される長い説明文
long_description=long_description,
# 長い説明文のフォーマット
long_description_content_type="text/markdown",
# プロジェクトのURL
url="https://github.com/Sunwood-ai-labs/SourceSage",
# パッケージのインストールに必要な依存関係
# install_requires=required,
install_requires=[
'loguru',
'GitPython',
'requests',
'art',
'termcolor',
'google-generativeai',
'litellm',
'beautifulsoup4',
'markdown',
'html2text'
],
)