-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.75 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
import sys
from setuptools import setup
if sys.version_info[0] < 3:
with open("README.md") as f:
README = f.read()
else:
with open("README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="ffb",
version="0.1.1",
author="Ali Yaman, Umut Deniz",
author_email="aliymn.db@gmail.com, umutdeniz609@gmail.com",
description="Find Fucking Bug",
license="MIT",
long_description_content_type="text/markdown",
long_description=README,
keywords="Find Fucking Bug, error handling, debugging tool",
packages=["ffb", "ffb.core", "ffb.helper"],
url="https://github.com/find-fucking-bug",
download_url="https://github.com/find-fucking-bug",
install_requires=[
"ollama==0.3.2",
"rich==13.8.0",
],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Quality Assurance",
"Natural Language :: English",
],
entry_points={"console_scripts": ["ffb=ffb.core.run:main"]},
)