-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 691 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
"""ManualBox project"""
from setuptools import find_packages, setup
setup(
name="manualbox",
version="0.2.1",
description="A secure storage as file system which requires user input to access files.",
long_description="A simple testing system which can be maintained.",
platforms=["Linux", "Darwin"],
author="Kushal Das",
author_email="mail@kushaldas.in",
url="https://manualbox.org",
license="GPLv3+",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"manualbox = manualbox:main",
"manualboxinput = manualbox.manualinput:main",
]
},
)