-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
36 lines (33 loc) · 957 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
32
33
34
35
import setuptools
from src._dirbpy import __version__
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='dirbpy',
version=__version__,
license="MIT license",
author='Marc-Olivier Bouchard',
author_email='[email protected]',
url='https://github.com/marcolivierbouch/dirbpy',
description='This is the new version of dirb in python.',
platforms=["unix", "linux", "osx"],
scripts=["bin/dirbpy"],
long_description=long_description,
long_description_content_type='text/x-rst',
packages=[
"_dirbpy",
],
package_dir={"": "src"},
install_requires=[
"argparse",
"requests",
"JSON-log-formatter",
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
py_modules=["dirbpy"],
zip_safe=False,
)