-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
30 lines (28 loc) · 997 Bytes
/
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
from setuptools import find_packages, setup
# Read the contents of requirements.txt
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="codypy",
version="0.1.2",
description="A Python wrapper binding to Cody Agent through establishing a connection to the Cody-Agent server from Sourcegraph Cody using JSON-RPC protocol over a TCP/stdio connection.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="PriNova",
author_email="[email protected]",
url="https://github.com/PriNova/codypy",
packages=find_packages(),
entry_points={
"console_scripts": [
"codypy-cli = cli:main",
],
},
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: MIT License",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.7",
)