-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.14 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.14 KB
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
#!/usr/bin/env python
import os
from setuptools import setup
directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='darkbox',
packages=[
'darkbox',
'darkbox.commands',
'darkbox.static',
'darkbox.util',
],
version='0.1.0',
description='Portable, all-in-one, cross-platform toolkit.',
long_description=long_description,
long_description_content_type='text/markdown',
license='WTFPL',
url='https://github.com/AbnormalSec/darkbox',
author='AbnormalSec',
author_email='vesche@protonmail.com',
entry_points={
'console_scripts': [
'darkbox = darkbox.darkbox:main',
]
},
install_requires=[
'distro',
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Security"
]
)