-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 loc) · 977 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
30
31
32
33
34
35
import os
from setuptools import setup, find_packages
def get_requirements():
basedir = os.path.dirname(__file__)
try:
with open(os.path.join(basedir, 'requirements.txt')) as f:
return f.readlines()
except FileNotFoundError:
raise RuntimeError('No requirements info found.')
setup(
name='ssh-crypt',
version='1.1.12',
license='BSD',
author='Maxim Nikitenko',
author_email='[email protected]',
packages=find_packages(),
description='ssh-crypt is a tool to encrypt/decrypt data using your ssh key from ssh-agent',\
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=get_requirements(),
python_requires='>=3.5',
url="https://github.com/Sets88/ssh-crypt",
entry_points={
'console_scripts': [
'ssh-crypt = ssh_crypt:main',
]
}
)