|
2 | 2 | # Added to example. |
3 | 3 | name = "pep631_socks" |
4 | 4 | license = "gpl-3.0-or-later" |
| 5 | +version = "0.0" |
5 | 6 |
|
6 | 7 | # Example copied from https://peps.python.org/pep-0631/#example |
7 | 8 | dependencies = [ |
8 | | - 'cached-property >= 1.2.0, < 2', |
9 | | - 'distro >= 1.5.0, < 2', |
10 | | - 'docker[ssh] >= 4.2.2, < 5', |
11 | | - 'dockerpty >= 0.4.1, < 1', |
12 | | - 'docopt >= 0.6.1, < 1', |
13 | | - 'jsonschema >= 2.5.1, < 4', |
14 | | - 'PyYAML >= 3.10, < 6', |
15 | | - 'python-dotenv >= 0.13.0, < 1', |
16 | | - 'requests >= 2.20.0, < 3', |
17 | | - 'texttable >= 0.9.0, < 2', |
18 | | - 'websocket-client >= 0.32.0, < 1', |
19 | | - # 'toskip >= 0.0.1', |
| 9 | + 'cached-property >= 1.2.0, < 2', |
| 10 | + 'distro >= 1.5.0, < 2', |
| 11 | + 'docker[ssh] >= 4.2.2, < 5', |
| 12 | + 'dockerpty >= 0.4.1, < 1', |
| 13 | + 'docopt >= 0.6.1, < 1', |
| 14 | + 'jsonschema >= 2.5.1, < 4', |
| 15 | + 'PyYAML >= 3.10, < 6', |
| 16 | + 'python-dotenv >= 0.13.0, < 1', |
| 17 | + 'requests >= 2.20.0, < 3', |
| 18 | + 'texttable >= 0.9.0, < 2', |
| 19 | + 'websocket-client >= 0.32.0, < 1', |
| 20 | + # 'toskip >= 0.0.1', |
20 | 21 |
|
21 | | - # Conditional |
22 | | - 'backports.shutil_get_terminal_size == 1.0.0; python_version < "3.3"', |
23 | | - 'backports.ssl_match_hostname >= 3.5, < 4; python_version < "3.5"', |
24 | | - 'colorama >= 0.4, < 1; sys_platform == "win32"', |
25 | | - 'enum34 >= 1.0.4, < 2; python_version < "3.4"', |
26 | | - 'ipaddress >= 1.0.16, < 2; python_version < "3.3"', |
27 | | - 'subprocess32 >= 3.5.4, < 4; python_version < "3.2"', |
| 22 | + # Conditional |
| 23 | + 'backports.shutil_get_terminal_size == 1.0.0; python_version < "3.3"', |
| 24 | + 'backports.ssl_match_hostname >= 3.5, < 4; python_version < "3.5"', |
| 25 | + 'colorama >= 0.4, < 1; sys_platform == "win32"', |
| 26 | + 'enum34 >= 1.0.4, < 2; python_version < "3.4"', |
| 27 | + 'ipaddress >= 1.0.16, < 2; python_version < "3.3"', |
| 28 | + 'subprocess32 >= 3.5.4, < 4; python_version < "3.2"', |
28 | 29 | ] |
29 | 30 |
|
30 | 31 | [project.optional-dependencies] |
31 | | -socks = [ 'PySocks >= 1.5.6, != 1.5.7, < 2' ] |
| 32 | +socks = ['PySocks >= 1.5.6, != 1.5.7, < 2'] |
32 | 33 | tests = [ |
33 | | - 'ddt >= 1.2.2, < 2', |
34 | | - 'pytest < 6', |
35 | | - 'mock >= 1.0.1, < 4; python_version < "3.4"', |
| 34 | + 'ddt >= 1.2.2, < 2', |
| 35 | + 'pytest < 6', |
| 36 | + 'mock >= 1.0.1, < 4; python_version < "3.4"', |
36 | 37 | ] |
37 | 38 |
|
38 | 39 | # Added to example. |
|
0 commit comments