-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (28 loc) · 859 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="vixos",
version="0.0.0",
description="VixOS is a secure app launcher, inspired by QubesOS and jollheef/appvm.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Patient Engineering",
author_email="[email protected]",
packages=["vixos"],
entry_points={
"console_scripts": [
"vixos = vixos.__main__:main",
],
},
license="GPLv3",
include_package_data=True,
install_requires=open("requirements.txt").read().splitlines(),
url="https://github.com/Patient-Engineering/vixos",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
],
python_requires=">=3.7",
)