-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (37 loc) · 1.3 KB
/
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
36
37
38
39
40
41
42
from setuptools import setup
import os
import io
import runpy
current = os.path.realpath(os.path.dirname(__file__))
with io.open(os.path.join(current, 'README.rst'), encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join(current, 'requirements.txt')) as f:
install_requirements = f.read().splitlines()
__version__ = runpy.run_path(
os.path.join(current, "vaultfs", "version.py"))["__version__"]
setup(name='vaultfs',
description='Hashicorp Vault fuse filesystem',
url='https://github.com/PsyanticY/vaultfs',
long_description=long_description,
version=__version__,
author='PsyanticY',
author_email='iuns@outlook.fr',
license='MIT',
platforms=["Linux"],
packages=["vaultfs"],
install_requires=install_requirements,
data_files =[('/etc', ['config/vaultfs.cfg'])],
classifiers=[
'Development Status :: 1 - Development',
'Intended Audience :: Security/Automation',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only'
],
keywords='Security HashicCorpVault keys fuse',
entry_points = {
'console_scripts': [
'vaultfs = vaultfs.vaultfs:main',
],
},
zip_safe=False)