-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.22 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
import sys
from pathlib import Path
__dir__ = Path(__file__).absolute().parent
# Remove current dir from sys.path, otherwise setuptools will peek up our
# module instead of system's.
sys.path.pop(0)
from setuptools import setup
sys.path.append(".")
import sdist_upip
setup(
name='micropython-socks',
py_modules=['socks'],
version='1.0.2',
description='MicroPython library implementing SOCKS server.',
long_description='This library lets you start SOCKS server.',
keywords='socks server proxy micropython',
url='https://github.com./kost/micropython-socks',
author='Vlatko Kosturjak',
author_email='[email protected]',
maintainer='Vlatko Kosturjak',
maintainer_email='[email protected]',
license='MIT',
cmdclass={'sdist': sdist_upip.sdist},
project_urls={
'Bug Reports': 'https://github.com./kost/micropython-socks/issues',
'Documentation': 'https://github.com./kost/micropython-socks/blob/master/README.md',
'Source': 'https://github.com./kost/micropython-socks',
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: Implementation :: MicroPython',
'License :: OSI Approved :: MIT License',
],
)