forked from yankeexe/good-first-issues
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.48 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
"""Package setup"""
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
requirements = [
"halo==0.0.31",
"requests==2.31.0",
"click==8.1.7",
"tabulate==0.9.0",
"rich<=7.1.0",
]
requirements_dev = ["pytest==8.1.1", "ruff==0.3.7", "pre-commit", "mypy"]
setuptools.setup(
name="good-first-issues",
version="2.1.0",
author="Yankee Maharjan",
author_email="yankee.exe@gmail.com",
url="https://github.com/yankeexe/good-first-issues",
description="Find good first issues right from your CLI!",
license="MIT",
packages=setuptools.find_packages(exclude=["dist", "build", "*.egg-info"]),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
extras_require={"dev": requirements_dev},
entry_points={"console_scripts": ["gfi = good_first_issues.main:cli"]},
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: CLI",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
],
project_urls={
"Bug Reports": "https://github.com/yankeexe/good-first-issues/issues",
"Source": "https://github.com/yankeexe/good-first-issues",
},
)