-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (40 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
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
# coding: utf-8
import os
from setuptools import setup, find_packages
from sockssl.__init__ import __version__
# here - where we are.
here = os.path.abspath(os.path.dirname(__file__))
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
# read the package requirements for install_requires
with open(os.path.join(here, 'requirements.txt'), 'r') as f:
requirements = f.readlines()
# setup!
setup(
name='pysockssl',
description='Simple TCP/TLS mitm engine supports SOCKSv4 + SOCKSv5 + Cert store',
license='GPL v3',
author='trichimtrich',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/trichimtrich/pysockssl',
keywords=['mitm', 'proxy', 'ssl', 'tls', 'socksv4', 'socksv5', 'socks4', 'socks5'],
version=__version__,
# include other files
package_data={},
packages=find_packages(),
install_requires=requirements,
python_requires='>=3.5',
classifiers=[
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
],
entry_points={
'console_scripts': [
'sockssl=sockssl.cli:cli',
],
},
)