forked from NorthwaveSecurity/dradis-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 721 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 721 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
with open("README.md",encoding="utf-8") as f:
long_description = f.read()
setup(name='dradis-api',
version='1.2',
description='Dradis API',
long_description=long_description,
long_description_content_type="text/markdown",
author='Northwave B.V.',
url="https://github.com/NorthwaveSecurity/dradis-api",
license='LGPL',
py_modules=['dradis'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: LGPL License',
'Programming Language :: Python :: 3',
],
keywords='dradis api',
python_requires='>=3',
)