-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 835 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "burpr",
version = "0.0.4",
author = "Krystian Bajno",
author_email = "krystian.bajno@gmail.com",
description = ("A Burp Suite request parser, used for aid in assessing application security functionality."),
license = "MIT",
long_description_content_type='text/markdown',
keywords = "burp suite burpsuite request parser",
url = "https://github.com/krystianbajno/burpr",
packages=find_packages(),
install_requires=["urllib3"],
long_description=read('README.md'),
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)