-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
53 lines (49 loc) · 1.34 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
52
53
import setuptools
SETUP_REQUIRES = [
"pytest-pylint",
"pytest-runner",
"wheel"
]
INSTALL_REQUIRES = [
"aiohttp",
"aiofiles"
]
TESTS_REQUIRES = [
"Pillow",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-mock",
"aioresponses"
]
setuptools.setup(
name="urlscanio",
version="0.2.2",
description=("Command line utility to get information about a website "
"using URLScan.io's APIs."),
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/Aquarthur/urlscanio",
author="Arthur Verkaik",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython"
],
python_requires=">=3.8",
keywords="urlscan cli",
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
setup_requires=SETUP_REQUIRES,
tests_require=TESTS_REQUIRES,
install_requires=INSTALL_REQUIRES,
entry_points={
"console_scripts": [
"urlscanio = src.urlscanio.__main__:main"
]
}
)