-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.53 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
def read_files(files):
data = []
for file in files:
with open(file, encoding='utf-8') as f:
data.append(f.read())
return "\n".join(data)
meta = {}
with open('praetorian_ssh_proxy/version.py') as f:
exec(f.read(), meta)
setup(
name='praetorian-ssh-proxy',
version=meta['__version__'],
packages=[
'praetorian_ssh_proxy',
],
install_requires=[
'paramiko==2.7.*',
'python-dotenv==0.15.*',
'praetorian-api-client==0.3.*'
],
url='https://github.com/Praetorian-Defence/praetorian-ssh-proxy',
license='MIT',
author='Adam Žúrek',
author_email='adamzurek14@gmail.com',
description='SSH proxy server for Praetorian API',
long_description=read_files(['README.md', 'CHANGELOG.md']),
long_description_content_type='text/markdown',
entry_points={
"console_scripts": [
'run = praetorian_ssh_proxy.run:main'
]
},
classifiers=[
# As from https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Database',
'Topic :: Internet :: Proxy Servers',
'Topic :: Security'
]
)