-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.01 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="DeadOrNot",
version="1.0.2",
author="Abdul Abdi",
author_email="[email protected]",
description="A command-line tool for reporting on the status of links in a file",
url="https://github.com/AbdulMAbdi/deadOrNot",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"colorama",
"requests",
"termcolor",
"pytest",
"pre-commit",
"black",
"flake8",
"requests-mock",
"pytest-cov",
],
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"deadOrNot = src.deadOrNot",
]
},
python_requires=">=3.6",
)