-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1008 Bytes
/
setup.py
File metadata and controls
43 lines (39 loc) · 1008 Bytes
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
import pathlib
import setuptools
def from_file(*names, encoding='utf8'):
with open(
pathlib.Path(pathlib.Path(__file__).parent, *names),
encoding=encoding
) as fil:
return fil.read()
setuptools.setup(
name='passtry',
version='1.1.5',
description='TODO',
long_description=from_file('README.md'),
url='https://github.com/rivsec/passtry',
author='tasooshi',
author_email='tasooshi@pm.me',
project_urls={
'Changelog': 'https://github.com/rivsec/passtry/CHANGELOG.md',
'Issue Tracker': 'https://github.com/rivsec/passtry/issues',
},
keywords=[
],
python_requires='>=3.8',
install_requires=[
'paramiko==2.11.0',
'requests==2.28.0',
],
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
classifiers=[
],
entry_points={
'console_scripts': [
'passtry = passtry:main'
]
},
)