-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 958 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
31
from setuptools import find_packages, setup
VERSION = "1.5.0"
with open("requirements/common.in") as f:
REQUIREMENTS = list(
filter(
lambda req: not req.startswith("#") and not req.startswith("http") and req,
f.read().splitlines(),
)
)
with open("README.md", encoding="utf8") as f:
README = f.read()
setup(
name="Resolve-IT",
version=VERSION,
author="Akshat",
description="A CLI tool that fetches Stack Overflow results when an exception is thrown.",
long_description=README,
long_description_content_type="text/markdown",
author_email="[email protected]",
python_requires=">=3.5",
url="https://github.com/akshatdalton/Resolve-IT",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
entry_points={"console_scripts": ["resolveit = resolveit.app:main"]},
install_requires=REQUIREMENTS,
license="MIT License",
)