forked from yankeexe/good-first-issues
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (30 loc) · 1.17 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
"""Package setup"""
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
requirements = ["halo", "requests", "click", "tabulate", "rich<=7.1.0"]
# Development Requirements
requirements_dev = ["pytest<=4.*", "black<=20.8b1", "pre-commit", "mypy"]
setuptools.setup(
name="good-first-issues",
version="2.1.0",
author="Yankee Maharjan",
author_email="[email protected]",
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"]},
classifiers=[
"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",
],
)