-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 724 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='scoper',
version='1.1.0',
author='James Bonifield',
author_email='bonifield.tools@gmail.com',
description='test a single URL, or a list of URLs, against a Burp Suite-style JSON configuration file to determine in/out-of-scope status',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/bonifield/scoper/',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
py_modules=["scoper"]
)